diff options
author | Neil Conway <neilc@samurai.com> | 2004-10-06 23:31:45 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2004-10-06 23:31:45 +0000 |
commit | 3ba0fc760c0f5f0f1b0dc9c44856cb76c4334b0c (patch) | |
tree | 3aa70561b23507a859a0b8565a1c40bea082e68c /src | |
parent | d7e0ebdf8e05f0aa89ec9d5b4b7332f757299973 (diff) | |
download | postgresql-3ba0fc760c0f5f0f1b0dc9c44856cb76c4334b0c.tar.gz postgresql-3ba0fc760c0f5f0f1b0dc9c44856cb76c4334b0c.zip |
Capitalize some SQL keywords the previous commit missed, for consistency.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 2e446357d7a..c9ad16af677 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -12,7 +12,7 @@ * by PostgreSQL * * IDENTIFICATION - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.387 2004/10/06 17:43:07 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.388 2004/10/06 23:31:45 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -1397,7 +1397,7 @@ dumpBlobs(Archive *AH, void *arg) if (AH->remoteVersion >= 70100) appendPQExpBuffer(oidQry, "DECLARE bloboid CURSOR FOR SELECT DISTINCT loid FROM pg_largeobject"); else - appendPQExpBuffer(oidQry, "DECLARE bloboid CURSOR FOR SELECT oid from pg_class where relkind = 'l'"); + appendPQExpBuffer(oidQry, "DECLARE bloboid CURSOR FOR SELECT oid FROM pg_class WHERE relkind = 'l'"); res = PQexec(g_conn, oidQry->data); check_sql_result(res, g_conn, oidQry->data, PGRES_COMMAND_OK); |