Commit 836f6345 authored by Andres Freund's avatar Andres Freund

Fix collation dependency in test introduced in 8586bf7e.

Per buildfarm.
parent 3b925e90
......@@ -173,7 +173,7 @@ SELECT
(SELECT 'toast for ' || relname::regclass FROM pg_class pcm WHERE pcm.reltoastrelid = pc.oid)
ELSE
relname::regclass::text
END AS relname
END COLLATE "C" AS relname
FROM pg_class AS pc,
pg_am AS pa
WHERE pa.oid = pc.relam
......@@ -183,8 +183,8 @@ ORDER BY 3, 1, 2;
---------+--------+----------------------------------
r | heap2 | tableam_parted_b_heap2
r | heap2 | tableam_parted_d_heap2
r | heap2 | tableam_tblas_heap2
r | heap2 | tableam_tbl_heap2
r | heap2 | tableam_tblas_heap2
m | heap2 | tableam_tblmv_heap2
t | heap2 | toast for tableam_parted_b_heap2
t | heap2 | toast for tableam_parted_d_heap2
......
......@@ -123,7 +123,7 @@ SELECT
(SELECT 'toast for ' || relname::regclass FROM pg_class pcm WHERE pcm.reltoastrelid = pc.oid)
ELSE
relname::regclass::text
END AS relname
END COLLATE "C" AS relname
FROM pg_class AS pc,
pg_am AS pa
WHERE pa.oid = pc.relam
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment