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 4108440 commit 991974bCopy full SHA for 991974b
src/bin/psql/describe.c
@@ -6495,12 +6495,23 @@ describePublications(const char *pattern)
6495
if (has_pubtruncate)
6496
appendPQExpBufferStr(&buf,
6497
", pubtruncate");
6498
+ else
6499
+ appendPQExpBufferStr(&buf,
6500
+ ", false AS pubtruncate");
6501
+
6502
if (has_pubgencols)
6503
6504
", pubgencols");
6505
6506
6507
+ ", false AS pubgencols");
6508
6509
if (has_pubviaroot)
6510
6511
", pubviaroot");
6512
6513
6514
+ ", false AS pubviaroot");
6515
6516
6517
"\nFROM pg_catalog.pg_publication\n");
0 commit comments