Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3c94b2 commit 5905101Copy full SHA for 5905101
src/bin/psql/describe.c
@@ -8,7 +8,7 @@
8
*
9
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
10
11
- * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.180 2008/07/15 03:16:03 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.181 2008/07/15 16:06:06 momjian Exp $
12
*/
13
#include "postgres_fe.h"
14
@@ -868,7 +868,7 @@ describeOneTableDetails(const char *schemaname,
868
tableinfo.hasrules = strcmp(PQgetvalue(res, 0, 4), "t") == 0;
869
tableinfo.hasoids = strcmp(PQgetvalue(res, 0, 5), "t") == 0;
870
tableinfo.tablespace = (pset.sversion >= 80000) ?
871
- atooid(PQgetvalue(res, 0, 6)) : 0;
+ atooid(PQgetvalue(res, 0, 6)) : 0;
872
PQclear(res);
873
874
/*
0 commit comments