mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
make TEMP -> TEMPORARY
This commit is contained in:
parent
edbe00a720
commit
651e98b17f
@ -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");
|
||||
|
Loading…
x
Reference in New Issue
Block a user