File tree Expand file tree Collapse file tree 3 files changed +5
-19
lines changed Expand file tree Collapse file tree 3 files changed +5
-19
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.38 2002/08/30 03:18:23 momjian Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.39 2002/08/30 16:00:41 momjian Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -700,7 +700,7 @@ ZW ZIMBABWE
700
700
There is no <command>COPY</command> statement in SQL92.
701
701
</para>
702
702
<para>
703
- The following syntax was used by pre-7.3 servers and is still supported:
703
+ The following syntax was used by pre-7.3 applications and is still supported:
704
704
<synopsis>
705
705
COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ]
706
706
FROM { '<replaceable class="parameter">filename</replaceable>' | <filename>stdin</filename> }
Original file line number Diff line number Diff line change 1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.59 2002/08/30 03:18:23 momjian Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.60 2002/08/30 16:00:41 momjian Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -869,7 +869,7 @@ SELECT name FROM distributors ORDER BY code;
869
869
FOR UPDATE cannot be used in contexts where returned rows can't be clearly
870
870
identified with individual table rows; for example it can't be used with
871
871
aggregation. FOR UPDATE may also appear before LIMIT for portability with
872
- pre-7.3 servers .
872
+ pre-7.3 applications .
873
873
</para>
874
874
</refsect2>
875
875
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.87 2002/08/29 21:50:36 momjian Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.88 2002/08/30 16:00:41 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -709,20 +709,6 @@ recv_and_check_password_packet(Port *port)
709
709
if (pq_eof () == EOF || pq_getint (& len , 4 ) == EOF )
710
710
return STATUS_EOF ; /* client didn't want to send password */
711
711
712
- /*
713
- * Since the remote client has not yet been authenticated, we need
714
- * to be careful when using the data they send us. The 8K limit is
715
- * arbitrary, and somewhat bogus: the intent is to ensure we don't
716
- * allocate an enormous chunk of memory.
717
- */
718
-
719
- if (len < 1 || len > 8192 )
720
- {
721
- elog (LOG , "Invalid password packet length: %d; "
722
- "must satisfy 1 <= length <= 8192" , len );
723
- return STATUS_EOF ;
724
- }
725
-
726
712
initStringInfo (& buf );
727
713
if (pq_getstr (& buf ) == EOF ) /* receive password */
728
714
{
You can’t perform that action at this time.
0 commit comments