1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-28 05:21:27 +03:00

Fix buildfarm failure introduced by commit e65dbc9927.

The patch had incorrectly specified the default value for
publish_generated_columns during the query formation in pg_dump.

Author: Vignesh C <vignesh21@gmail.com>
Discussion: https://postgr.es/m/CAA4eK1KfZYTD8Hpi9TD1KaB8rNUBR9baUvTxa5wYyZDGbEaa6g@mail.gmail.com
This commit is contained in:
Amit Kapila 2025-01-23 17:47:15 +05:30
parent 34694ec888
commit b35434b134

View File

@ -4318,7 +4318,7 @@ getPublications(Archive *fout)
if (fout->remoteVersion >= 180000)
appendPQExpBufferStr(query, "p.pubgencols_type ");
else
appendPQExpBufferStr(query, CppAsString2(PUBLISH_GENCOLS_NONE) " AS pubgencols_type ");
appendPQExpBuffer(query, "'%c' AS pubgencols_type ", PUBLISH_GENCOLS_NONE);
appendPQExpBufferStr(query, "FROM pg_publication p");