aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/expected/stats.out2
-rw-r--r--src/test/regress/sql/stats.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/stats.out b/src/test/regress/expected/stats.out
index 2707f3400d9..30d763c4aee 100644
--- a/src/test/regress/expected/stats.out
+++ b/src/test/regress/expected/stats.out
@@ -14,7 +14,7 @@ SHOW track_counts; -- must be on
-- List of backend types, contexts and objects tracked in pg_stat_io.
\a
SELECT backend_type, object, context FROM pg_stat_io
- ORDER BY backend_type, object, context COLLATE "C";
+ ORDER BY backend_type COLLATE "C", object COLLATE "C", context COLLATE "C";
backend_type|object|context
autovacuum launcher|relation|bulkread
autovacuum launcher|relation|init
diff --git a/src/test/regress/sql/stats.sql b/src/test/regress/sql/stats.sql
index 7e03af93168..5e7ef20fef6 100644
--- a/src/test/regress/sql/stats.sql
+++ b/src/test/regress/sql/stats.sql
@@ -11,7 +11,7 @@ SHOW track_counts; -- must be on
-- List of backend types, contexts and objects tracked in pg_stat_io.
\a
SELECT backend_type, object, context FROM pg_stat_io
- ORDER BY backend_type, object, context COLLATE "C";
+ ORDER BY backend_type COLLATE "C", object COLLATE "C", context COLLATE "C";
\a
-- ensure that both seqscan and indexscan plans are allowed