diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-07-04 16:57:49 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-07-04 16:57:49 +0000 |
commit | 651e98b17fcb58f15af0eac5d82ae4cedfeaf320 (patch) | |
tree | 30dc9f437b4d3c48ebe7f433c813e1387f60b404 | |
parent | edbe00a720a2c54a055b209e8d12df49ac4b0c63 (diff) | |
download | postgresql-651e98b17fcb58f15af0eac5d82ae4cedfeaf320.tar.gz postgresql-651e98b17fcb58f15af0eac5d82ae4cedfeaf320.zip |
make TEMP -> TEMPORARY
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 8a5a857662d..a5fbdf80193 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -22,7 +22,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.155 2000/07/04 16:57:18 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.156 2000/07/04 16:57:49 momjian Exp $ * * Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb * @@ -3599,7 +3599,7 @@ setMaxOid(Archive *fout) char sql[1024]; int pos; - res = PQexec(g_conn, "CREATE TEMP TABLE pg_dump_oid (dummy int4)"); + res = PQexec(g_conn, "CREATE TEMPORARY TABLE pg_dump_oid (dummy int4)"); if (!res || PQresultStatus(res) != PGRES_COMMAND_OK) { @@ -3635,7 +3635,7 @@ setMaxOid(Archive *fout) if (g_verbose) fprintf(stderr, "%s maximum system oid is %u %s\n", g_comment_start, max_oid, g_comment_end); - pos = snprintf(sql, 1024, "CREATE TEMP TABLE pg_dump_oid (dummy int4);\n"); + pos = snprintf(sql, 1024, "CREATE TEMPORARY TABLE pg_dump_oid (dummy int4);\n"); pos = pos + snprintf(sql+pos, 1024-pos, "COPY pg_dump_oid WITH OIDS FROM stdin;\n"); pos = pos + snprintf(sql+pos, 1024-pos, "%-d\t0\n", max_oid); pos = pos + snprintf(sql+pos, 1024-pos, "\\.\n"); |