From 651e98b17fcb58f15af0eac5d82ae4cedfeaf320 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 4 Jul 2000 16:57:49 +0000 Subject: [PATCH] make TEMP -> TEMPORARY --- src/bin/pg_dump/pg_dump.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 8a5a857662..a5fbdf8019 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"); -- 2.40.0