mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where the identical packages and sequences visible as different in the schema diff tool. Fixes #5362
This commit is contained in:
@@ -736,6 +736,14 @@ CREATE SEQUENCE source.seq_diff
|
||||
ALTER SEQUENCE source.seq_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
CREATE SEQUENCE source.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 3
|
||||
MINVALUE 3
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE source.seq_start_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
@@ -687,6 +687,14 @@ CREATE SEQUENCE target.seq_diff
|
||||
ALTER SEQUENCE target.seq_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
CREATE SEQUENCE target.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE target.seq_start_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
@@ -699,6 +699,14 @@ CREATE SEQUENCE source.seq_diff
|
||||
ALTER SEQUENCE source.seq_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
CREATE SEQUENCE source.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 3
|
||||
MINVALUE 3
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE source.seq_start_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
@@ -686,6 +686,14 @@ CREATE SEQUENCE target.seq_diff
|
||||
ALTER SEQUENCE target.seq_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
CREATE SEQUENCE target.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE target.seq_start_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
@@ -700,6 +700,14 @@ CREATE SEQUENCE source.seq_diff
|
||||
ALTER SEQUENCE source.seq_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
CREATE SEQUENCE source.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 3
|
||||
MINVALUE 3
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE source.seq_start_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
@@ -675,6 +675,14 @@ CREATE SEQUENCE target.seq_diff
|
||||
ALTER SEQUENCE target.seq_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
CREATE SEQUENCE target.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE target.seq_start_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
@@ -569,6 +569,14 @@ CREATE SEQUENCE source.seq_diff
|
||||
ALTER SEQUENCE source.seq_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
CREATE SEQUENCE source.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 3
|
||||
MINVALUE 3
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE source.seq_start_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
@@ -593,6 +593,14 @@ CREATE SEQUENCE target.seq_diff
|
||||
ALTER SEQUENCE target.seq_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
CREATE SEQUENCE target.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE target.seq_start_diff
|
||||
OWNER TO postgres;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
@@ -797,6 +797,14 @@ CREATE SEQUENCE source.seq_diff
|
||||
ALTER SEQUENCE source.seq_diff
|
||||
OWNER TO enterprisedb;
|
||||
|
||||
CREATE SEQUENCE source.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 3
|
||||
MINVALUE 3
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE source.seq_start_diff
|
||||
OWNER TO enterprisedb;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
@@ -774,6 +774,14 @@ CREATE SEQUENCE target.seq_diff
|
||||
ALTER SEQUENCE target.seq_diff
|
||||
OWNER TO enterprisedb;
|
||||
|
||||
CREATE SEQUENCE target.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE target.seq_start_diff
|
||||
OWNER TO enterprisedb;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
@@ -729,6 +729,14 @@ CREATE SEQUENCE source.seq_diff
|
||||
ALTER SEQUENCE source.seq_diff
|
||||
OWNER TO enterprisedb;
|
||||
|
||||
CREATE SEQUENCE source.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 3
|
||||
MINVALUE 3
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE source.seq_start_diff
|
||||
OWNER TO enterprisedb;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
@@ -743,6 +743,14 @@ CREATE SEQUENCE target.seq_diff
|
||||
ALTER SEQUENCE target.seq_diff
|
||||
OWNER TO enterprisedb;
|
||||
|
||||
CREATE SEQUENCE target.seq_start_diff
|
||||
INCREMENT 5
|
||||
START 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 20;
|
||||
ALTER SEQUENCE target.seq_start_diff
|
||||
OWNER TO enterprisedb;
|
||||
|
||||
-- Foreign Data Wrapper to test foreign table
|
||||
CREATE FOREIGN DATA WRAPPER test_fdw_for_foreign_table;
|
||||
ALTER FOREIGN DATA WRAPPER test_fdw_for_foreign_table
|
||||
|
Reference in New Issue
Block a user