diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-04-24 21:00:10 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-04-24 21:00:10 +0000 |
commit | 8889eb098a03712b8de15d8393417bff5ff24d95 (patch) | |
tree | 90d810c7edb308e50242a38b2fd4bd8c7fb4ec0d | |
parent | 6260c7c1674890cba18622a6b783082a8300e963 (diff) | |
download | postgresql-8889eb098a03712b8de15d8393417bff5ff24d95.tar.gz postgresql-8889eb098a03712b8de15d8393417bff5ff24d95.zip |
Remove reference to BLCKSZ.
-rw-r--r-- | src/bin/psql/copy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c index 52c0c0e4010..fb07b872795 100644 --- a/src/bin/psql/copy.c +++ b/src/bin/psql/copy.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/copy.c,v 1.21 2002/04/24 05:24:00 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/copy.c,v 1.22 2002/04/24 21:00:10 petere Exp $ */ #include "postgres_fe.h" #include "copy.h" @@ -330,7 +330,7 @@ do_copy(const char *args) } -#define COPYBUFSIZ BLCKSZ +#define COPYBUFSIZ 8192 /* size doesn't matter */ /* |