mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
Fix typo in pg_dump's support for dumping collations from pre-v10 servers.
Dunno what 'p' was supposed to mean, but since neither the code below here nor pg_collation.h think it's valid, it must be a mistake. Per report from Thomas Kellerer. Discussion: https://postgr.es/m/og9q8f%24oes%241%40blaine.gmane.org
This commit is contained in:
parent
94aced8cd0
commit
764cb2b596
@ -13039,7 +13039,7 @@ dumpCollation(Archive *fout, CollInfo *collinfo)
|
|||||||
collinfo->dobj.catId.oid);
|
collinfo->dobj.catId.oid);
|
||||||
else
|
else
|
||||||
appendPQExpBuffer(query, "SELECT "
|
appendPQExpBuffer(query, "SELECT "
|
||||||
"'p'::char AS collprovider, "
|
"'c'::char AS collprovider, "
|
||||||
"collcollate, "
|
"collcollate, "
|
||||||
"collctype, "
|
"collctype, "
|
||||||
"NULL AS collversion "
|
"NULL AS collversion "
|
||||||
|
Loading…
x
Reference in New Issue
Block a user