Skip to content

Commit 5cc67b7

Browse files
authored
Merge pull request IvorySQL#937 from jiaoshuntian/callinto_5stable
Callinto 5stable
2 parents f4cc4d2 + 42a36c7 commit 5cc67b7

File tree

98 files changed

+6008
-378
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+6008
-378
lines changed

contrib/file_fdw/expected/ivy_file_fdw.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--
22
-- Test foreign-data wrapper file_fdw.
33
--
4+
\set EXECUTE_RUN_PREPARE on
45
-- directory paths are passed to us in environment variables
56
\getenv abs_srcdir PG_ABS_SRCDIR
67
-- Clean up in case a prior regression run failed

contrib/file_fdw/sql/ivy_file_fdw.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
-- Test foreign-data wrapper file_fdw.
33
--
44

5+
\set EXECUTE_RUN_PREPARE on
56
-- directory paths are passed to us in environment variables
67
\getenv abs_srcdir PG_ABS_SRCDIR
78

contrib/ivorysql_ora/src/sysview/sysview--1.0.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ SELECT
10861086
decode(bitand(s.flags, 16), 16, 'Y', 'N') AS scale_flag,
10871087
decode(bitand(s.flags, 2048), 2048, 'Y', 'N') AS extend_flag,null AS shared_flag,
10881088
decode(bitand(s.flags, 64), 64, 'Y', 'N') AS session_flag,null AS keep_value
1089-
FROM PG_SEQUENCE s,pg_class c where s.seqrelid = c.oid and c.relowner::regrole = current_user::regrole;
1089+
FROM PG_SEQUENCE s,pg_class c where s.seqrelid = c.oid and pg_get_userbyid(c.relowner) = current_user;
10901090

10911091
CREATE OR REPLACE VIEW SYS.DBA_VIEWS AS
10921092
SELECT

contrib/pg_stat_statements/expected/ivy_squashing.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--
22
-- Const squashing functionality
33
--
4+
\set EXECUTE_RUN_PREPARE on
45
CREATE EXTENSION pg_stat_statements;
56
--
67
-- Simple Lists

contrib/pg_stat_statements/expected/ivy_utility.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--
22
-- Utility commands
33
--
4+
\set EXECUTE_RUN_PREPARE on
45
-- These tests require track_utility to be enabled.
56
SET pg_stat_statements.track_utility = TRUE;
67
SELECT pg_stat_statements_reset() IS NOT NULL AS t;

contrib/pg_stat_statements/expected/planning.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--
22
-- Information related to planning
33
--
4+
\set EXECUTE_RUN_PREPARE on
45
-- These tests require track_planning to be enabled.
56
SET pg_stat_statements.track_planning = TRUE;
67
SELECT pg_stat_statements_reset() IS NOT NULL AS t;

contrib/pg_stat_statements/expected/select.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--
22
-- SELECT statements
33
--
4+
\set EXECUTE_RUN_PREPARE on
45
CREATE EXTENSION pg_stat_statements;
56
SET pg_stat_statements.track_utility = FALSE;
67
SET pg_stat_statements.track_planning = TRUE;

contrib/pg_stat_statements/sql/ivy_squashing.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--
22
-- Const squashing functionality
33
--
4+
\set EXECUTE_RUN_PREPARE on
45
CREATE EXTENSION pg_stat_statements;
56

67
--

contrib/pg_stat_statements/sql/ivy_utility.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--
22
-- Utility commands
33
--
4+
\set EXECUTE_RUN_PREPARE on
45

56
-- These tests require track_utility to be enabled.
67
SET pg_stat_statements.track_utility = TRUE;

contrib/pg_stat_statements/sql/planning.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--
22
-- Information related to planning
33
--
4+
\set EXECUTE_RUN_PREPARE on
45

56
-- These tests require track_planning to be enabled.
67
SET pg_stat_statements.track_planning = TRUE;

0 commit comments

Comments
 (0)