*** pgsql/src/bin/psql/describe.c 2008/07/15 03:16:03 1.180 --- pgsql/src/bin/psql/describe.c 2008/07/15 16:06:06 1.181 *************** *** 8,14 **** * * Copyright (c) 2000-2008, PostgreSQL Global Development Group * ! * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.179 2008/07/14 23:13:04 momjian Exp $ */ #include "postgres_fe.h" --- 8,14 ---- * * Copyright (c) 2000-2008, PostgreSQL Global Development Group * ! * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.180 2008/07/15 03:16:03 momjian Exp $ */ #include "postgres_fe.h" *************** describeOneTableDetails(const char *sche *** 868,874 **** tableinfo.hasrules = strcmp(PQgetvalue(res, 0, 4), "t") == 0; tableinfo.hasoids = strcmp(PQgetvalue(res, 0, 5), "t") == 0; tableinfo.tablespace = (pset.sversion >= 80000) ? ! atooid(PQgetvalue(res, 0, 6)) : 0; PQclear(res); /* --- 868,874 ---- tableinfo.hasrules = strcmp(PQgetvalue(res, 0, 4), "t") == 0; tableinfo.hasoids = strcmp(PQgetvalue(res, 0, 5), "t") == 0; tableinfo.tablespace = (pset.sversion >= 80000) ? ! atooid(PQgetvalue(res, 0, 6)) : 0; PQclear(res); /*