Re: pg_dump's "--exclude-table" and "--exclude-table-data" options are ignored and/or cause the dump to fail entirely unless both the schema and table name use 1950s-era identifiers.
От | Juan José Santamaría Flecha |
---|---|
Тема | Re: pg_dump's "--exclude-table" and "--exclude-table-data" options are ignored and/or cause the dump to fail entirely unless both the schema and table name use 1950s-era identifiers. |
Дата | |
Msg-id | CAC+AXB2SGO7nH4Yvj2Ad-MSCOGvhWH1UZz2N7VDiJPtk-hX8vA@mail.gmail.com обсуждение исходный текст |
Ответ на | pg_dump's "--exclude-table" and "--exclude-table-data" options are ignored and/or cause the dump to fail entirely unless both the schema and table name use 1950s-era identifiers. (tutiluren@tutanota.com) |
Список | pgsql-bugs |
On Tue, Jul 21, 2020 at 8:30 AM <tutiluren@tutanota.com> wrote:
Try it out yourself, by creating a test schema called "Personal stöff" and a table in it called "My däiary". Then create a text column and make it PK and then add the text "This is supposed to be ignored.". Then try to run this command:pg_dump --format plain --verbose --file "C:\test.txt" --exclude-table-data="Personal stöff"."My däiary" --host="localhost" --port="5432" --username="postgres" --dbname="TestDB"Just to avoid wasting time, when the command doesn't work at all, it outputs things like this:pg_dump: [archiver (db)] query failed: ERROR: invalid byte sequence for encoding "UTF8": 0xf6 0x72 0x66 0x72pg_dump: [archiver (db)] query was: SELECT c.oidFROM pg_catalog.pg_class cLEFT JOIN pg_catalog.pg_namespace nON n.oid OPERATOR(pg_catalog.=) c.relnamespaceWHERE c.relkind OPERATOR(pg_catalog.=) ANY(array['r', 'S', 'v', 'm', 'f', 'p'])AND c.relname OPERATOR(pg_catalog.~) '^(table name)$'AND n.nspname OPERATOR(pg_catalog.~) '^(schema name)$'
The source of the problem is coming from how CMD works with UTF8 (or does not). The error you are getting is using code page Windows-1252 [1], 0xf6 is ö, but pg_dump is expecting UTF8 and crashes.
You can try to configure UTF8 as your CMD encoding, see [2]. Please tell us if this works for you.
Regards,
Juan José Santamaría Flecha
В списке pgsql-bugs по дате отправления: