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
f7e089b3
Commit
f7e089b3
authored
Aug 30, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Back out password packet length check.
Improve wording of pre-7.3 syntax mention.
parent
9a0b4d7f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
19 deletions
+5
-19
doc/src/sgml/ref/copy.sgml
doc/src/sgml/ref/copy.sgml
+2
-2
doc/src/sgml/ref/select.sgml
doc/src/sgml/ref/select.sgml
+2
-2
src/backend/libpq/auth.c
src/backend/libpq/auth.c
+1
-15
No files found.
doc/src/sgml/ref/copy.sgml
View file @
f7e089b3
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.3
8 2002/08/30 03:18:23
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.3
9 2002/08/30 16:00:41
momjian Exp $
PostgreSQL documentation
-->
...
...
@@ -700,7 +700,7 @@ ZW ZIMBABWE
There is no <command>COPY</command> statement in SQL92.
</para>
<para>
The following syntax was used by pre-7.3
server
s and is still supported:
The following syntax was used by pre-7.3
application
s and is still supported:
<synopsis>
COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ]
FROM { '<replaceable class="parameter">filename</replaceable>' | <filename>stdin</filename> }
...
...
doc/src/sgml/ref/select.sgml
View file @
f7e089b3
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.
59 2002/08/30 03:18:23
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.
60 2002/08/30 16:00:41
momjian Exp $
PostgreSQL documentation
-->
...
...
@@ -869,7 +869,7 @@ SELECT name FROM distributors ORDER BY code;
FOR UPDATE cannot be used in contexts where returned rows can't be clearly
identified with individual table rows; for example it can't be used with
aggregation. FOR UPDATE may also appear before LIMIT for portability with
pre-7.3
server
s.
pre-7.3
application
s.
</para>
</refsect2>
...
...
src/backend/libpq/auth.c
View file @
f7e089b3
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.8
7 2002/08/29 21:50:36
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.8
8 2002/08/30 16:00:41
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -709,20 +709,6 @@ recv_and_check_password_packet(Port *port)
if
(
pq_eof
()
==
EOF
||
pq_getint
(
&
len
,
4
)
==
EOF
)
return
STATUS_EOF
;
/* client didn't want to send password */
/*
* Since the remote client has not yet been authenticated, we need
* to be careful when using the data they send us. The 8K limit is
* arbitrary, and somewhat bogus: the intent is to ensure we don't
* allocate an enormous chunk of memory.
*/
if
(
len
<
1
||
len
>
8192
)
{
elog
(
LOG
,
"Invalid password packet length: %d; "
"must satisfy 1 <= length <= 8192"
,
len
);
return
STATUS_EOF
;
}
initStringInfo
(
&
buf
);
if
(
pq_getstr
(
&
buf
)
==
EOF
)
/* receive password */
{
...
...
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