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

[PGPRO-14880] Fix tests for PostgreSQL 18#161

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
MarinaPolyakova merged 3 commits intomasterfromPGPRO-14880
Oct 2, 2025
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletionsMakefile
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,12 +21,12 @@ RELATIVE_INCLUDES = $(addprefix src/, $(INCLUDES))

LDFLAGS_SL += $(filter -lm, $(LIBS))

REGRESS = rum rum_validate rum_hash ruminv timestamp \
orderby orderby_hash limits \
int2 int4 float4 float8 money oid \
REGRESS =securityrum rum_validate rum_hash ruminv timestamp \
orderby orderby_hashaltorder altorder_hashlimits \
int2 int4int8float4 float8 money oid \
time timetz date interval \
macaddr inet cidr varchar char bytea bit varbit \
numeric rum_weight expr
macaddr inet cidrtextvarchar char bytea bit varbit \
numeric rum_weight expr array

TAP_TESTS = 1

Expand Down
4 changes: 2 additions & 2 deletionsexpected/altorder.out
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,8 +6,8 @@
* altorder.out - test output for 64-bit systems
* altorder_1.out - test output for 32-bit systems
*
* Since c01743aa486 (>=18) EXPLAIN output was changed,
* now itincludes the number of disabled nodes
* Since c01743aa486and 161320b4b96(>=18) EXPLAIN output was changed,
* now itshows whether nodes are disabled.
*
* altorder_2.out - test output for 32-bit systems (>=18)
*
Expand Down
4 changes: 2 additions & 2 deletionsexpected/altorder_1.out
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,8 +6,8 @@
* altorder.out - test output for 64-bit systems
* altorder_1.out - test output for 32-bit systems
*
* Since c01743aa486 (>=18) EXPLAIN output was changed,
* now itincludes the number of disabled nodes
* Since c01743aa486and 161320b4b96(>=18) EXPLAIN output was changed,
* now itshows whether nodes are disabled.
*
* altorder_2.out - test output for 32-bit systems (>=18)
*
Expand Down
58 changes: 22 additions & 36 deletionsexpected/altorder_2.out
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,8 +6,8 @@
* altorder.out - test output for 64-bit systems
* altorder_1.out - test output for 32-bit systems
*
* Since c01743aa486 (>=18) EXPLAIN output was changed,
* now itincludes the number of disabled nodes
* Since c01743aa486and 161320b4b96(>=18) EXPLAIN output was changed,
* now itshows whether nodes are disabled.
*
* altorder_2.out - test output for 32-bit systems (>=18)
*
Expand DownExpand Up@@ -190,11 +190,10 @@ SELECT count(*) FROM atsts WHERE t @@ 'wr|qh';
QUERY PLAN
---------------------------------------------------
Aggregate
Disabled Nodes: 1
-> Seq Scan on atsts
Disabled Nodes: 1
Disabled: true
Filter: (t @@ '''wr'' | ''qh'''::tsquery)
(5 rows)
(4 rows)

SELECT count(*) FROM atsts WHERE t @@ 'wr|qh';
count
Expand DownExpand Up@@ -237,11 +236,10 @@ SELECT count(*) FROM atsts WHERE d < '2016-05-16 14:21:25';
QUERY PLAN
-------------------------------------------------------------------------------
Aggregate
Disabled Nodes: 1
-> Seq Scan on atsts
Disabled Nodes: 1
Disabled: true
Filter: (d < 'Mon May 16 14:21:25 2016'::timestamp without time zone)
(5 rows)
(4 rows)

SELECT count(*) FROM atsts WHERE d < '2016-05-16 14:21:25';
count
Expand All@@ -254,11 +252,10 @@ SELECT count(*) FROM atsts WHERE d > '2016-05-16 14:21:25';
QUERY PLAN
-------------------------------------------------------------------------------
Aggregate
Disabled Nodes: 1
-> Seq Scan on atsts
Disabled Nodes: 1
Disabled: true
Filter: (d > 'Mon May 16 14:21:25 2016'::timestamp without time zone)
(5 rows)
(4 rows)

SELECT count(*) FROM atsts WHERE d > '2016-05-16 14:21:25';
count
Expand All@@ -275,14 +272,12 @@ SELECT id, d, d <=> '2016-05-16 14:21:25' FROM atsts WHERE t @@ 'wr&qh' ORDER BY
QUERY PLAN
-------------------------------------------------------------------------------------
Limit
Disabled Nodes: 1
-> Sort
Disabled Nodes: 1
Sort Key: ((d <=> 'Mon May 16 14:21:25 2016'::timestamp without time zone))
-> Seq Scan on atsts
Disabled Nodes: 1
Disabled: true
Filter: (t @@ '''wr'' & ''qh'''::tsquery)
(8 rows)
(6 rows)

SELECT id, d, d <=> '2016-05-16 14:21:25' FROM atsts WHERE t @@ 'wr&qh' ORDER BY d <=> '2016-05-16 14:21:25' LIMIT 5;
id | d | ?column?
Expand All@@ -299,14 +294,12 @@ SELECT id, d, d <=| '2016-05-16 14:21:25' FROM atsts WHERE t @@ 'wr&qh' ORDER BY
QUERY PLAN
-------------------------------------------------------------------------------------
Limit
Disabled Nodes: 1
-> Sort
Disabled Nodes: 1
Sort Key: ((d <=| 'Mon May 16 14:21:25 2016'::timestamp without time zone))
-> Seq Scan on atsts
Disabled Nodes: 1
Disabled: true
Filter: (t @@ '''wr'' & ''qh'''::tsquery)
(8 rows)
(6 rows)

SELECT id, d, d <=| '2016-05-16 14:21:25' FROM atsts WHERE t @@ 'wr&qh' ORDER BY d <=| '2016-05-16 14:21:25' LIMIT 5;
id | d | ?column?
Expand All@@ -323,14 +316,12 @@ SELECT id, d, d |=> '2016-05-16 14:21:25' FROM atsts WHERE t @@ 'wr&qh' ORDER BY
QUERY PLAN
-------------------------------------------------------------------------------------
Limit
Disabled Nodes: 1
-> Sort
Disabled Nodes: 1
Sort Key: ((d |=> 'Mon May 16 14:21:25 2016'::timestamp without time zone))
-> Seq Scan on atsts
Disabled Nodes: 1
Disabled: true
Filter: (t @@ '''wr'' & ''qh'''::tsquery)
(8 rows)
(6 rows)

SELECT id, d, d |=> '2016-05-16 14:21:25' FROM atsts WHERE t @@ 'wr&qh' ORDER BY d |=> '2016-05-16 14:21:25' LIMIT 5;
id | d | ?column?
Expand All@@ -347,13 +338,11 @@ SELECT id, d, d <=> '2016-05-16 14:21:25' FROM atsts ORDER BY d <=> '2016-05-16
QUERY PLAN
-------------------------------------------------------------------------------------
Limit
Disabled Nodes: 1
-> Sort
Disabled Nodes: 1
Sort Key: ((d <=> 'Mon May 16 14:21:25 2016'::timestamp without time zone))
-> Seq Scan on atsts
Disabled Nodes: 1
(7 rows)
Disabled: true
(5 rows)

SELECT id, d, d <=> '2016-05-16 14:21:25' FROM atsts ORDER BY d <=> '2016-05-16 14:21:25' LIMIT 5;
id | d | ?column?
Expand All@@ -370,12 +359,11 @@ SELECT id, d FROM atsts WHERE t @@ 'wr&qh' AND d <= '2016-05-16 14:21:25' ORDER
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------
Sort
Disabled Nodes: 1
Sort Key: d
-> Seq Scan on atsts
Disabled Nodes: 1
Disabled: true
Filter: ((t @@ '''wr'' & ''qh'''::tsquery) AND (d <= 'Mon May 16 14:21:25 2016'::timestamp without time zone))
(6 rows)
(5 rows)

SELECT id, d FROM atsts WHERE t @@ 'wr&qh' AND d <= '2016-05-16 14:21:25' ORDER BY d;
id | d
Expand DownExpand Up@@ -423,12 +411,11 @@ SELECT id, d FROM atsts WHERE t @@ 'wr&qh' AND d >= '2016-05-16 14:21:25' ORDER
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------
Sort
Disabled Nodes: 1
Sort Key: d
-> Seq Scan on atsts
Disabled Nodes: 1
Disabled: true
Filter: ((t @@ '''wr'' & ''qh'''::tsquery) AND (d >= 'Mon May 16 14:21:25 2016'::timestamp without time zone))
(6 rows)
(5 rows)

SELECT id, d FROM atsts WHERE t @@ 'wr&qh' AND d >= '2016-05-16 14:21:25' ORDER BY d;
id | d
Expand DownExpand Up@@ -472,12 +459,11 @@ SELECT id, d FROM atsts WHERE t @@ 'wr&q:*' AND d >= '2016-05-16 14:21:25' ORDE
QUERY PLAN
-------------------------------------------------------------------------------------------------------------------------
Sort
Disabled Nodes: 1
Sort Key: d
-> Seq Scan on atsts
Disabled Nodes: 1
Disabled: true
Filter: ((t @@ '''wr'' & ''q'':*'::tsquery) AND (d >= 'Mon May 16 14:21:25 2016'::timestamp without time zone))
(6 rows)
(5 rows)

SELECT id, d FROM atsts WHERE t @@ 'wr&q:*' AND d >= '2016-05-16 14:21:25' ORDER BY d;
id | d
Expand Down
4 changes: 2 additions & 2 deletionsexpected/altorder_hash.out
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,8 +6,8 @@
* altorder_hash.out - test output for 64-bit systems and
* altorder_hash_1.out - test output for 32-bit systems.
*
* Since c01743aa486 (>=18) EXPLAIN output was changed,
* now itincludes the number of disabled nodes
* Since c01743aa486and 161320b4b96(>=18) EXPLAIN output was changed,
* now itshows whether nodes are disabled.
*
* altorder_hash_2.out - test output for 32-bit systems (>=18)
*
Expand Down
4 changes: 2 additions & 2 deletionsexpected/altorder_hash_1.out
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,8 +6,8 @@
* altorder_hash.out - test output for 64-bit systems and
* altorder_hash_1.out - test output for 32-bit systems.
*
* Since c01743aa486 (>=18) EXPLAIN output was changed,
* now itincludes the number of disabled nodes
* Since c01743aa486and 161320b4b96(>=18) EXPLAIN output was changed,
* now itshows whether nodes are disabled.
*
* altorder_hash_2.out - test output for 32-bit systems (>=18)
*
Expand Down
53 changes: 20 additions & 33 deletionsexpected/altorder_hash_2.out
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,8 +6,8 @@
* altorder_hash.out - test output for 64-bit systems and
* altorder_hash_1.out - test output for 32-bit systems.
*
* Since c01743aa486 (>=18) EXPLAIN output was changed,
* now itincludes the number of disabled nodes
* Since c01743aa486and 161320b4b96(>=18) EXPLAIN output was changed,
* now itshows whether nodes are disabled.
*
* altorder_hash_2.out - test output for 32-bit systems (>=18)
*
Expand DownExpand Up@@ -135,11 +135,10 @@ SELECT count(*) FROM atstsh WHERE t @@ 'wr|qh';
QUERY PLAN
---------------------------------------------------
Aggregate
Disabled Nodes: 1
-> Seq Scan on atstsh
Disabled Nodes: 1
Disabled: true
Filter: (t @@ '''wr'' | ''qh'''::tsquery)
(5 rows)
(4 rows)

SELECT count(*) FROM atstsh WHERE t @@ 'wr|qh';
count
Expand DownExpand Up@@ -182,11 +181,10 @@ SELECT count(*) FROM atstsh WHERE d < '2016-05-16 14:21:25';
QUERY PLAN
-------------------------------------------------------------------------------
Aggregate
Disabled Nodes: 1
-> Seq Scan on atstsh
Disabled Nodes: 1
Disabled: true
Filter: (d < 'Mon May 16 14:21:25 2016'::timestamp without time zone)
(5 rows)
(4 rows)

SELECT count(*) FROM atstsh WHERE d < '2016-05-16 14:21:25';
count
Expand All@@ -199,11 +197,10 @@ SELECT count(*) FROM atstsh WHERE d > '2016-05-16 14:21:25';
QUERY PLAN
-------------------------------------------------------------------------------
Aggregate
Disabled Nodes: 1
-> Seq Scan on atstsh
Disabled Nodes: 1
Disabled: true
Filter: (d > 'Mon May 16 14:21:25 2016'::timestamp without time zone)
(5 rows)
(4 rows)

SELECT count(*) FROM atstsh WHERE d > '2016-05-16 14:21:25';
count
Expand All@@ -220,14 +217,12 @@ SELECT id, d, d <=> '2016-05-16 14:21:25' FROM atstsh WHERE t @@ 'wr&qh' ORDER B
QUERY PLAN
-------------------------------------------------------------------------------------
Limit
Disabled Nodes: 1
-> Sort
Disabled Nodes: 1
Sort Key: ((d <=> 'Mon May 16 14:21:25 2016'::timestamp without time zone))
-> Seq Scan on atstsh
Disabled Nodes: 1
Disabled: true
Filter: (t @@ '''wr'' & ''qh'''::tsquery)
(8 rows)
(6 rows)

SELECT id, d, d <=> '2016-05-16 14:21:25' FROM atstsh WHERE t @@ 'wr&qh' ORDER BY d <=> '2016-05-16 14:21:25' LIMIT 5;
id | d | ?column?
Expand All@@ -244,14 +239,12 @@ SELECT id, d, d <=| '2016-05-16 14:21:25' FROM atstsh WHERE t @@ 'wr&qh' ORDER B
QUERY PLAN
-------------------------------------------------------------------------------------
Limit
Disabled Nodes: 1
-> Sort
Disabled Nodes: 1
Sort Key: ((d <=| 'Mon May 16 14:21:25 2016'::timestamp without time zone))
-> Seq Scan on atstsh
Disabled Nodes: 1
Disabled: true
Filter: (t @@ '''wr'' & ''qh'''::tsquery)
(8 rows)
(6 rows)

SELECT id, d, d <=| '2016-05-16 14:21:25' FROM atstsh WHERE t @@ 'wr&qh' ORDER BY d <=| '2016-05-16 14:21:25' LIMIT 5;
id | d | ?column?
Expand All@@ -268,14 +261,12 @@ SELECT id, d, d |=> '2016-05-16 14:21:25' FROM atstsh WHERE t @@ 'wr&qh' ORDER B
QUERY PLAN
-------------------------------------------------------------------------------------
Limit
Disabled Nodes: 1
-> Sort
Disabled Nodes: 1
Sort Key: ((d |=> 'Mon May 16 14:21:25 2016'::timestamp without time zone))
-> Seq Scan on atstsh
Disabled Nodes: 1
Disabled: true
Filter: (t @@ '''wr'' & ''qh'''::tsquery)
(8 rows)
(6 rows)

SELECT id, d, d |=> '2016-05-16 14:21:25' FROM atstsh WHERE t @@ 'wr&qh' ORDER BY d |=> '2016-05-16 14:21:25' LIMIT 5;
id | d | ?column?
Expand All@@ -292,13 +283,11 @@ SELECT id, d, d <=> '2016-05-16 14:21:25' FROM atstsh ORDER BY d <=> '2016-05-16
QUERY PLAN
-------------------------------------------------------------------------------------
Limit
Disabled Nodes: 1
-> Sort
Disabled Nodes: 1
Sort Key: ((d <=> 'Mon May 16 14:21:25 2016'::timestamp without time zone))
-> Seq Scan on atstsh
Disabled Nodes: 1
(7 rows)
Disabled: true
(5 rows)

SELECT id, d, d <=> '2016-05-16 14:21:25' FROM atstsh ORDER BY d <=> '2016-05-16 14:21:25' LIMIT 5;
id | d | ?column?
Expand All@@ -315,12 +304,11 @@ SELECT id, d FROM atstsh WHERE t @@ 'wr&qh' AND d <= '2016-05-16 14:21:25' ORDE
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------
Sort
Disabled Nodes: 1
Sort Key: d
-> Seq Scan on atstsh
Disabled Nodes: 1
Disabled: true
Filter: ((t @@ '''wr'' & ''qh'''::tsquery) AND (d <= 'Mon May 16 14:21:25 2016'::timestamp without time zone))
(6 rows)
(5 rows)

SELECT id, d FROM atstsh WHERE t @@ 'wr&qh' AND d <= '2016-05-16 14:21:25' ORDER BY d;
id | d
Expand All@@ -341,12 +329,11 @@ SELECT id, d FROM atstsh WHERE t @@ 'wr&qh' AND d >= '2016-05-16 14:21:25' ORDE
QUERY PLAN
------------------------------------------------------------------------------------------------------------------------
Sort
Disabled Nodes: 1
Sort Key: d
-> Seq Scan on atstsh
Disabled Nodes: 1
Disabled: true
Filter: ((t @@ '''wr'' & ''qh'''::tsquery) AND (d >= 'Mon May 16 14:21:25 2016'::timestamp without time zone))
(6 rows)
(5 rows)

SELECT id, d FROM atstsh WHERE t @@ 'wr&qh' AND d >= '2016-05-16 14:21:25' ORDER BY d;
id | d
Expand Down
4 changes: 2 additions & 2 deletionsexpected/array.out
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,8 +6,8 @@
* array.out - test output for 64-bit systems and
* array_1.out - test output for 32-bit systems.
*
* Since c01743aa486 (>=18) EXPLAIN output was changed,
* now itincludes the number of disabled nodes
* Since c01743aa486and 161320b4b96(>=18) EXPLAIN output was changed,
* now itshows whether nodes are disabled.
*
* array_2.out - test output for 64-bit systems (>=18).
* array_3.out - test output for 32-bit systems (>=18).
Expand Down
4 changes: 2 additions & 2 deletionsexpected/array_1.out
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,8 +6,8 @@
* array.out - test output for 64-bit systems and
* array_1.out - test output for 32-bit systems.
*
* Since c01743aa486 (>=18) EXPLAIN output was changed,
* now itincludes the number of disabled nodes
* Since c01743aa486and 161320b4b96(>=18) EXPLAIN output was changed,
* now itshows whether nodes are disabled.
*
* array_2.out - test output for 64-bit systems (>=18).
* array_3.out - test output for 32-bit systems (>=18).
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp