From 590510136e911f2497b636d11c08b970885e0c66 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 15 Jul 2008 16:06:06 +0000 Subject: [PATCH] Addendum: psql sequence value display patch was originally written by Euler Taveira de Oliveira. --- src/bin/psql/describe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 32e75f547a..8eb64f38ee 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -8,7 +8,7 @@ * * 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 $ + * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.181 2008/07/15 16:06:06 momjian Exp $ */ #include "postgres_fe.h" @@ -868,7 +868,7 @@ describeOneTableDetails(const char *schemaname, 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; + atooid(PQgetvalue(res, 0, 6)) : 0; PQclear(res); /* -- 2.40.0