Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
efa58e10
Commit
efa58e10
authored
May 06, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor editorializing.
parent
755d1917
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
9 deletions
+12
-9
doc/src/sgml/protocol.sgml
doc/src/sgml/protocol.sgml
+12
-9
No files found.
doc/src/sgml/protocol.sgml
View file @
efa58e10
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/protocol.sgml,v 1.3
5 2003/05/06 21:51:41
tgl Exp $ -->
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/protocol.sgml,v 1.3
6 2003/05/06 23:10:04
tgl Exp $ -->
<chapter id="protocol">
<chapter id="protocol">
<title>Frontend/Backend Protocol</title>
<title>Frontend/Backend Protocol</title>
...
@@ -160,10 +160,11 @@
...
@@ -160,10 +160,11 @@
(but note that these exist only within a session, and are never shared
(but note that these exist only within a session, and are never shared
across sessions). Existing prepared statements and portals are
across sessions). Existing prepared statements and portals are
referenced by names assigned when they were created. In addition,
referenced by names assigned when they were created. In addition,
an <quote>unnamed</> prepared statement and portal exist, for use with
an <quote>unnamed</> prepared statement and portal exist. Although these
queries that are to be executed and forgotten. This is slightly
behave largely the same as named objects, operations on them are optimized
more efficient than using named objects, since the backend knows that
for the case of executing a query only once and then discarding it,
it need not save the object's state for re-use.
whereas operations on named objects are optimized on the expectation
of multiple uses.
</para>
</para>
</sect2>
</sect2>
</sect1>
</sect1>
...
@@ -869,7 +870,8 @@
...
@@ -869,7 +870,8 @@
zero or more CopyData messages (always one per row), followed by CopyDone.
zero or more CopyData messages (always one per row), followed by CopyDone.
The backend then reverts to the command-processing mode it was
The backend then reverts to the command-processing mode it was
in before the <command>COPY</> started, and sends CommandComplete.
in before the <command>COPY</> started, and sends CommandComplete.
The frontend cannot abort the transfer (short of closing the connection),
The frontend cannot abort the transfer (except by closing the connection
or issuing a Cancel request),
but it can discard unwanted CopyData and CopyDone messages.
but it can discard unwanted CopyData and CopyDone messages.
</para>
</para>
...
@@ -2013,9 +2015,10 @@ CommandComplete (B)
...
@@ -2013,9 +2015,10 @@ CommandComplete (B)
<literal>INSERT <replaceable>oid</replaceable>
<literal>INSERT <replaceable>oid</replaceable>
<replaceable>rows</replaceable></literal>, where
<replaceable>rows</replaceable></literal>, where
<replaceable>rows</replaceable> is the number of rows
<replaceable>rows</replaceable> is the number of rows
inserted, and <replaceable>oid</replaceable> is the object ID
inserted. <replaceable>oid</replaceable> is the object ID
of the inserted row if <Replaceable>rows</Replaceable> is 1,
of the inserted row if <Replaceable>rows</Replaceable> is 1
otherwise <Replaceable>oid</Replaceable> is 0.
and the target table has OIDs;
otherwise <Replaceable>oid</Replaceable> is 0.
</Para>
</Para>
<Para>
<Para>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment