summaryrefslogtreecommitdiff
path: root/src/pl/tcl/sql/pltcl_queries.sql
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-07-21 14:24:07 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2016-07-21 14:24:07 -0400
commitdfddc452df76bf7dd9abfd630ecf298d24117a23 (patch)
treecf5a1d6ce47c04f2640da9a52a86c1a8139ae040 /src/pl/tcl/sql/pltcl_queries.sql
parent87ca88ba8af0ec977be9caadc84be52890f7f18d (diff)
Make pltcl regression tests safe for Danish locale.
Another peculiarity of Danish locale is that it has an unusual idea of how to sort upper vs. lower case. One of the pltcl test cases has an issue with that. Now that COLLATE works in all supported branches, we can just change the test to be locale-independent, and get rid of the variant expected file that used to support non-C locales.
Diffstat (limited to 'src/pl/tcl/sql/pltcl_queries.sql')
-rw-r--r--src/pl/tcl/sql/pltcl_queries.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/tcl/sql/pltcl_queries.sql b/src/pl/tcl/sql/pltcl_queries.sql
index ee711d5170a..08c4bf17113 100644
--- a/src/pl/tcl/sql/pltcl_queries.sql
+++ b/src/pl/tcl/sql/pltcl_queries.sql
@@ -70,8 +70,8 @@ select tcl_sum(key1) from T_pkey1 where key1 = 99;
select 1 @< 2;
select 100 @< 4;
-select * from T_pkey1 order by key1 using @<, key2;
-select * from T_pkey2 order by key1 using @<, key2;
+select * from T_pkey1 order by key1 using @<, key2 collate "C";
+select * from T_pkey2 order by key1 using @<, key2 collate "C";
-- show dump of trigger data
insert into trigger_test values(1,'insert');