mirror of
https://github.com/postgres/postgres.git
synced 2026-01-26 09:41:40 +03:00
Stabilize regression tests introduced by 259c96fa8f
Add the ORDER BY clause to new queries to avoid ordering ambiguity. Per buildfarm member rorqual.
This commit is contained in:
@@ -889,7 +889,8 @@ ALTER TABLE t SPLIT PARTITION tp_0_2 INTO
|
||||
PARTITION tp_1_2 FOR VALUES FROM (1) TO (2));
|
||||
SELECT c.relname, a.amname
|
||||
FROM pg_class c JOIN pg_am a ON c.relam = a.oid
|
||||
WHERE c.oid IN ('t'::regclass, 'tp_0_1'::regclass, 'tp_1_2'::regclass);
|
||||
WHERE c.oid IN ('t'::regclass, 'tp_0_1'::regclass, 'tp_1_2'::regclass)
|
||||
ORDER BY c.relname;
|
||||
DROP TABLE t;
|
||||
DROP ACCESS METHOD partition_split_heap;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user