Addd variable on top of the test

pull/7918/head
Cédric Villemain 2025-03-28 14:14:45 +01:00
parent 16d401b187
commit 4b711823b9
3 changed files with 17 additions and 0 deletions

View File

@ -3,6 +3,13 @@
--
-- Alternative "grant_on_table_propagation_0.out" and this comment can be
-- removed when support for PostgreSQL versions < 17 is dropped.
SHOW server_version \gset
SELECT substring(:'server_version', '\d+')::int >= 17 AS server_version_ge_17;
server_version_ge_17
---------------------------------------------------------------------
t
(1 row)
--
-- GRANT_ON_TABLE_PROPAGATION
--

View File

@ -3,6 +3,13 @@
--
-- Alternative "grant_on_table_propagation_0.out" and this comment can be
-- removed when support for PostgreSQL versions < 17 is dropped.
SHOW server_version \gset
SELECT substring(:'server_version', '\d+')::int >= 17 AS server_version_ge_17;
server_version_ge_17
---------------------------------------------------------------------
f
(1 row)
--
-- GRANT_ON_TABLE_PROPAGATION
--

View File

@ -4,6 +4,9 @@
-- Alternative "grant_on_table_propagation_0.out" and this comment can be
-- removed when support for PostgreSQL versions < 17 is dropped.
SHOW server_version \gset
SELECT substring(:'server_version', '\d+')::int >= 17 AS server_version_ge_17;
--
-- GRANT_ON_TABLE_PROPAGATION
--