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 24df866 commit e46072dCopy full SHA for e46072d
src/bin/psql/describe.c
@@ -2779,7 +2779,7 @@ describeOneTableDetails(const char *schemaname,
2779
if (pset.sversion >= 110000)
2780
appendPQExpBuffer(&buf, "(NOT t.tgisinternal OR (t.tgisinternal AND t.tgenabled = 'D') \n"
2781
" OR EXISTS (SELECT 1 FROM pg_catalog.pg_depend WHERE objid = t.oid \n"
2782
- " AND refclassid = 'pg_catalog.pg_trigger'::regclass))");
+ " AND refclassid = 'pg_catalog.pg_trigger'::pg_catalog.regclass))");
2783
else if (pset.sversion >= 90000)
2784
/* display/warn about disabled internal triggers */
2785
appendPQExpBuffer(&buf, "(NOT t.tgisinternal OR (t.tgisinternal AND t.tgenabled = 'D'))");
0 commit comments