Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7898a49

Browse files
committed
Add ORDER BY to new test query
Per buildfarm.
1 parent0574825 commit7898a49

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

‎src/test/regress/input/constraints.source‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,8 @@ ALTER INDEX t_a_idx ATTACH PARTITION tp_pkey;
443443
ALTER INDEX t_b_idx ATTACH PARTITION tp_b_a_key;
444444
ALTER TABLE t DETACH PARTITION tp;
445445
SELECT conname, conparentid, conislocal, coninhcount
446-
FROM pg_constraint WHERE conname IN ('tp_pkey', 'tp_b_a_key');
446+
FROM pg_constraint WHERE conname IN ('tp_pkey', 'tp_b_a_key')
447+
ORDER BY conname DESC;
447448
DROP TABLE t, tp;
448449

449450
CREATE TEMP TABLE t (a integer) PARTITION BY LIST (a);

‎src/test/regress/output/constraints.source‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,8 @@ ALTER INDEX t_a_idx ATTACH PARTITION tp_pkey;
612612
ALTER INDEX t_b_idx ATTACH PARTITION tp_b_a_key;
613613
ALTER TABLE t DETACH PARTITION tp;
614614
SELECT conname, conparentid, conislocal, coninhcount
615-
FROM pg_constraint WHERE conname IN ('tp_pkey', 'tp_b_a_key');
615+
FROM pg_constraint WHERE conname IN ('tp_pkey', 'tp_b_a_key')
616+
ORDER BY conname DESC;
616617
conname | conparentid | conislocal | coninhcount
617618
------------+-------------+------------+-------------
618619
tp_pkey | 0 | t | 0

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp