123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- # Copyright Materialize, Inc. and contributors. All rights reserved.
- #
- # Use of this software is governed by the Business Source License
- # included in the LICENSE file at the root of this repository.
- #
- # As of the Change Date specified in that file, in accordance with
- # the Business Source License, use of this software will be governed
- # by the Apache License, Version 2.0.
- # Setup SQL Server state.
- #
- # Create a table that has CDC enabled.
- $ sql-server-connect name=sql-server
- server=tcp:sql-server,1433;IntegratedSecurity=true;TrustServerCertificate=true;User ID=${arg.default-sql-server-user};Password=${arg.default-sql-server-password}
- $ sql-server-execute name=sql-server
- DROP DATABASE IF EXISTS test_source_tables;
- CREATE DATABASE test_source_tables COLLATE Latin1_General_100_CI_AI_SC_UTF8;
- USE test_source_tables;
- EXEC sys.sp_cdc_enable_db;
- ALTER DATABASE test_source_tables SET ALLOW_SNAPSHOT_ISOLATION ON;
- CREATE TABLE t1_pk (key_col VARCHAR(20) PRIMARY KEY, val_col VARCHAR(1024));
- EXEC sys.sp_cdc_enable_table @source_schema = 'dbo', @source_name = 't1_pk', @role_name = 'SA', @capture_instance = N't1_pk_cdc1', @supports_net_changes = 0;
- INSERT INTO t1_pk VALUES ('a', 'hello world'), ('b', 'foobar'), ('c', 'anotha one');
- CREATE TABLE t2_no_cdc (key_col VARCHAR(20) PRIMARY KEY, val_col VARCHAR(1024));
- CREATE TABLE t3_text (value VARCHAR(100));
- EXEC sys.sp_cdc_enable_table @source_schema = 'dbo', @source_name = 't3_text', @role_name = 'SA', @supports_net_changes = 0;
- CREATE TABLE text_cols (c1 decimal(20, 10), c2 time, c3 money, c4 varbinary(100));
- EXEC sys.sp_cdc_enable_table @source_schema = 'dbo', @source_name = 'text_cols', @role_name = 'SA', @supports_net_changes = 0;
- INSERT INTO text_cols VALUES (1.444889, '12:00:00', '$100.99', 0x1100AB);
- CREATE TABLE dummy (data int);
- EXEC sys.sp_cdc_enable_table @source_schema = 'dbo', @source_name = 'dummy', @role_name = 'SA', @supports_net_changes = 0;
- # Exercise Materialize.
- > CREATE SECRET IF NOT EXISTS sql_server_pass AS '${arg.default-sql-server-password}'
- $ postgres-execute connection=postgres://mz_system:materialize@${testdrive.materialize-internal-sql-addr}
- ALTER SYSTEM SET enable_sql_server_source = true;
- > CREATE CONNECTION ms_conn TO SQL SERVER (
- HOST 'sql-server',
- PORT 1433,
- DATABASE test_source_tables,
- USER '${arg.default-sql-server-user}',
- PASSWORD = SECRET sql_server_pass
- );
- # Create a SQL Server Source.
- > CREATE CLUSTER src_tables (SIZE = '1', REPLICATION FACTOR = 1);
- > SET CLUSTER TO src_tables;
- > CREATE SOURCE ms_src FROM SQL SERVER CONNECTION ms_conn;
- # Can't create tables from SQL server source where it doesn't EXISTS
- ! CREATE TABLE does_not_exist FROM SOURCE ms_src (REFERENCE does_not_exist);
- contains:not found in source
- # Can't create tables from SQL server source where table doesn't have cdc enabled
- ! CREATE TABLE no_cdc FROM SOURCE ms_src (REFERENCE t2_no_cdc);
- contains:not found in source
- # Can create tables from SQL server source
- > CREATE TABLE t1 FROM SOURCE ms_src (REFERENCE t1_pk);
- # Wait until snapshot has emitted stats and then insert a new row
- # to force LSN in MS SQL to progress.
- > SELECT s.name, ss.snapshot_records_known = ss.snapshot_records_staged
- FROM mz_internal.mz_source_statistics ss JOIN mz_sources s using (id)
- WHERE s.name = 'ms_src' AND ss.snapshot_records_staged > 0;
- ms_src true
- $ sql-server-execute name=sql-server
- INSERT INTO dummy VALUES (1);
- > SELECT * FROM t1;
- a "hello world"
- b "foobar"
- c "anotha one"
- # using a qualified name should work as well
- > CREATE TABLE t2 FROM SOURCE ms_src (REFERENCE dbo.t1_pk);
- # Wait until snapshot has emitted stats and then insert a new row
- # to force LSN in MS SQL to progress.
- > SELECT s.name, ss.snapshot_records_known = ss.snapshot_records_staged
- FROM mz_internal.mz_source_statistics ss JOIN mz_sources s using (id)
- WHERE s.name = 'ms_src' AND ss.snapshot_records_staged > 0;
- ms_src true
- $ sql-server-execute name=sql-server
- INSERT INTO dummy VALUES (1);
- $ sql-server-execute name=sql-server
- INSERT INTO dummy VALUES (1);
- > SELECT * FROM t2;
- a "hello world"
- b "foobar"
- c "anotha one"
- # source tables see updates
- $ sql-server-execute name=sql-server
- DELETE FROM t1_pk WHERE key_col = 'a';
- INSERT INTO t1_pk VALUES ('😊', 'lets see what happens');
- UPDATE t1_pk SET val_col = 'beer' WHERE key_col = 'b';
- INSERT INTO t2_no_cdc VALUES ('ignored', 'update');
- > SELECT * FROM t1;
- b "beer"
- c "anotha one"
- 😊 "lets see what happens"
- > SELECT * FROM t2;
- b "beer"
- c "anotha one"
- 😊 "lets see what happens"
- > DROP TABLE t1;
- # recreate the source table after dropping it
- # we should see the same values
- > CREATE TABLE t1 FROM SOURCE ms_src (REFERENCE t1_pk);
- # Wait until snapshot has emitted stats and then insert a new row
- # to force LSN in MS SQL to progress.
- > SELECT s.name, ss.snapshot_records_known = ss.snapshot_records_staged
- FROM mz_internal.mz_source_statistics ss JOIN mz_sources s using (id)
- WHERE s.name = 'ms_src' AND ss.snapshot_records_staged > 0;
- ms_src true
- $ sql-server-execute name=sql-server
- INSERT INTO dummy VALUES (1);
- > SELECT * FROM t1;
- b "beer"
- c "anotha one"
- 😊 "lets see what happens"
- > DROP TABLE t1;
- > DROP TABLE t2;
- # source tables support text columns
- > CREATE TABLE text_cols FROM SOURCE ms_src (REFERENCE dbo.text_cols) WITH (TEXT COLUMNS = (c1, c2, c3, c4));
- # Wait until snapshot has emitted stats and then insert a new row
- # to force LSN in MS SQL to progress.
- > SELECT s.name, ss.snapshot_records_known = ss.snapshot_records_staged
- FROM mz_internal.mz_source_statistics ss JOIN mz_sources s using (id)
- WHERE s.name = 'ms_src' AND ss.snapshot_records_staged > 0;
- ms_src true
- $ sql-server-execute name=sql-server
- INSERT INTO dummy VALUES (1);
- > SHOW COLUMNS FROM text_cols;
- c1 true text ""
- c2 true text ""
- c3 true text ""
- c4 true text ""
- > SELECT * FROM text_cols;
- 1.4448890000 12:00:00 100.9900 EQCr
- $ sql-server-execute name=sql-server
- INSERT INTO text_cols VALUES (2.000001, '01:59:32.99901', '$0.89', 0x1122AABBCC00DD), (NULL, NULL, '$99.99', NULL);
- > SELECT * FROM text_cols;
- 1.4448890000 12:00:00 100.9900 EQCr
- 2.0000010000 01:59:32.999010 0.8900 ESKqu8wA3Q==
- <null> <null> 99.9900 <null>
- > DROP TABLE text_cols;
- # source tables support exclude columns
- > CREATE TABLE exclude_cols FROM SOURCE ms_src (REFERENCE dbo.t1_pk) WITH (EXCLUDE COLUMNS = (key_col));
- # Wait until snapshot has emitted stats and then insert a new row
- # to force LSN in MS SQL to progress.
- > SELECT s.name, ss.snapshot_records_known = ss.snapshot_records_staged
- FROM mz_internal.mz_source_statistics ss JOIN mz_sources s using (id)
- WHERE s.name = 'ms_src' AND ss.snapshot_records_staged > 0;
- ms_src true
- $ sql-server-execute name=sql-server
- INSERT INTO dummy VALUES (1);
- > SHOW COLUMNS FROM exclude_cols;
- val_col true "character varying" ""
- > SELECT * FROM exclude_cols;
- "beer"
- "anotha one"
- "lets see what happens"
- $ sql-server-execute name=sql-server
- INSERT INTO t1_pk(key_col, val_col) VALUES ('d', 'dogs'), ('e', 'elephant');
- > SELECT * FROM exclude_cols;
- "beer"
- "anotha one"
- "lets see what happens"
- "dogs"
- "elephant"
- > DROP TABLE exclude_cols;
- # Ensure that rewinds are correctly processed
- > CREATE TABLE t1 FROM SOURCE ms_src (REFERENCE t1_pk);
- # Wait until snapshot has emitted stats and then insert a new row
- # to force LSN in MS SQL to progress.
- > SELECT s.name, ss.snapshot_records_known = ss.snapshot_records_staged
- FROM mz_internal.mz_source_statistics ss JOIN mz_sources s using (id)
- WHERE s.name = 'ms_src' AND ss.snapshot_records_staged > 0;
- ms_src true
- $ sql-server-execute name=sql-server
- INSERT INTO dummy VALUES (1);
- > SELECT * FROM t1;
- b "beer"
- c "anotha one"
- d "dogs"
- e "elephant"
- 😊 "lets see what happens"
- > ALTER CLUSTER src_tables SET (REPLICATION FACTOR = 0);
- $ sql-server-execute name=sql-server
- INSERT INTO t1_pk VALUES ('x', 'xeon'), ('y', 'yellow'), ('z', 'zion');
- > CREATE TABLE t2 FROM SOURCE ms_src (REFERENCE t1_pk);
- > ALTER CLUSTER src_tables SET (REPLICATION FACTOR = 1);
- # Wait until snapshot has emitted stats and then insert a new row
- # to force LSN in MS SQL to progress.
- > SELECT s.name, ss.snapshot_records_known = ss.snapshot_records_staged
- FROM mz_internal.mz_source_statistics ss JOIN mz_sources s using (id)
- WHERE s.name = 'ms_src' AND ss.snapshot_records_staged > 0;
- ms_src true
- $ sql-server-execute name=sql-server
- INSERT INTO dummy VALUES (1);
- > SELECT * FROM t1;
- b "beer"
- c "anotha one"
- d "dogs"
- e "elephant"
- x "xeon"
- y "yellow"
- z "zion"
- 😊 "lets see what happens"
- > SELECT * FROM t2;
- b "beer"
- c "anotha one"
- d "dogs"
- e "elephant"
- x "xeon"
- y "yellow"
- z "zion"
- 😊 "lets see what happens"
- # create source table after adding a column to upstream table
- # !!! disabled for now as we don't handle the capture instance switch gracefully.
- #$ sql-server-execute name=sql-server
- #ALTER TABLE t1_pk ADD extra_1 INT NULL;
- #EXEC sys.sp_cdc_enable_table @source_schema = 'dbo', @source_name = 't1_pk', @capture_instance = N't1_pk_cdc2', @role_name = 'SA', @supports_net_changes = 0;
- #EXEC sys.sp_cdc_disable_table @source_schema = 'dbo', @source_name = 't1_pk', @capture_instance = N't1_pk_cdc1';
- #
- #> CREATE TABLE extra_col FROM SOURCE ms_src (REFERENCE t1_pk);
- #
- #> SELECT * FROM extra_col;
- #b "beer" <null>
- #c "anotha one" <null>
- #😊 "lets see what happens" <null>
|