mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Make sepgsql regression tests robust vs. collation differences
In commit 25542d77
, regression test coverage was added to sepgsql
for partitioned tables. Unfortunately it was not robust in the face
of collation differences, per the buildfarm. Force "C" collation
in order to fix that.
Discussion: https://postgr.es/m/flat/623bcaae-112e-ced0-8c22-a84f75ae0c53%40joeconway.com
This commit is contained in:
@ -65,7 +65,7 @@ SELECT objtype, objname, label FROM pg_seclabels
|
||||
't1p', 't1p.o', 't1p.p', 't1p.q',
|
||||
't1p_ones', 't1p_ones.o', 't1p_ones.p', 't1p_ones.q',
|
||||
't1p_tens', 't1p_tens.o', 't1p_tens.p', 't1p_tens.q')
|
||||
ORDER BY objname;
|
||||
ORDER BY objname COLLATE "C";
|
||||
|
||||
CREATE SCHEMA my_schema_1;
|
||||
CREATE TABLE my_schema_1.ts1 (a int, b text);
|
||||
|
Reference in New Issue
Block a user