Commit 70594643 authored by Bruce Momjian's avatar Bruce Momjian

Fix for \dd on types.

parent 002796b5
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.117 1997/11/26 02:34:28 momjian Exp $ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.118 1997/11/30 17:46:01 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -757,6 +757,7 @@ objectDescription(PsqlSettings *pset, char *object, FILE *fout) ...@@ -757,6 +757,7 @@ objectDescription(PsqlSettings *pset, char *object, FILE *fout)
strcat(descbuf, " pg_type.oid = pg_description.objoid " ); strcat(descbuf, " pg_type.oid = pg_description.objoid " );
if (!(res = PSQLexec(pset, descbuf))) if (!(res = PSQLexec(pset, descbuf)))
return -1; return -1;
else if (PQntuples(res) <= 0)
{ {
PQclear(res); PQclear(res);
descbuf[0] = '\0'; descbuf[0] = '\0';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment