Skip to content

Commit 15933cc

Browse files
committed
chore: prepare for merge to dev
1 parent 073f4f3 commit 15933cc

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
-- 'Row-level filter (conditional sync) test'
22

3-
\set testid '20'
3+
\set testid '26'
44
\ir helper_test_init.sql
55

66
-- Create first database
77
\connect postgres
88
\ir helper_psql_conn_setup.sql
9-
DROP DATABASE IF EXISTS cloudsync_test_1;
10-
CREATE DATABASE cloudsync_test_1;
9+
DROP DATABASE IF EXISTS cloudsync_test_26_a;
10+
CREATE DATABASE cloudsync_test_26_a;
1111

12-
\connect cloudsync_test_1
12+
\connect cloudsync_test_26_a
1313
\ir helper_psql_conn_setup.sql
1414
CREATE EXTENSION IF NOT EXISTS cloudsync;
1515

@@ -64,10 +64,10 @@ WHERE site_id = cloudsync_siteid() \gset
6464

6565
\connect postgres
6666
\ir helper_psql_conn_setup.sql
67-
DROP DATABASE IF EXISTS cloudsync_test_2;
68-
CREATE DATABASE cloudsync_test_2;
67+
DROP DATABASE IF EXISTS cloudsync_test_26_b;
68+
CREATE DATABASE cloudsync_test_26_b;
6969

70-
\connect cloudsync_test_2
70+
\connect cloudsync_test_26_b
7171
\ir helper_psql_conn_setup.sql
7272
CREATE EXTENSION IF NOT EXISTS cloudsync;
7373
CREATE TABLE tasks (id TEXT PRIMARY KEY NOT NULL, title TEXT, user_id INTEGER);
@@ -98,8 +98,8 @@ SELECT (:fail::int + 1) AS fail \gset
9898
-- Cleanup
9999
\ir helper_test_cleanup.sql
100100
\if :should_cleanup
101-
DROP DATABASE IF EXISTS cloudsync_test_1;
102-
DROP DATABASE IF EXISTS cloudsync_test_2;
101+
DROP DATABASE IF EXISTS cloudsync_test_26_a;
102+
DROP DATABASE IF EXISTS cloudsync_test_26_b;
103103
\else
104104
\echo [INFO] !!!!!
105105
\endif

test/postgresql/full_test.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
\ir 17_uuid_pk_roundtrip.sql
2828
\ir 18_bulk_insert_performance.sql
2929
\ir 19_uuid_pk_with_unmapped_cols.sql
30-
\ir 20_row_filter.sql
30+
\ir 26_row_filter.sql
3131

3232
-- 'Test summary'
3333
\echo '\nTest summary:'

0 commit comments

Comments
 (0)