Skip to content

Commit d8ce061

Browse files
committed
add new line to test files
1 parent c51c0c7 commit d8ce061

29 files changed

+29
-29
lines changed

test/sql-server-cdc-old-syntax/constraints.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ Explained Query:
114114
Used Indexes:
115115
- materialize.public.unique_nullable_primary_idx (*** full scan ***)
116116

117-
Target cluster: quickstart
117+
Target cluster: quickstart

test/sql-server-cdc-old-syntax/create-views-from-source-in-schema.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ INSERT INTO t2 SELECT * FROM t2;
6363
2
6464
2
6565

66-
> DROP SCHEMA schema1 CASCADE;
66+
> DROP SCHEMA schema1 CASCADE;

test/sql-server-cdc-old-syntax/dropped-slot-errors.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ EXEC sys.sp_cdc_disable_db;
5454
> CREATE CLUSTER REPLICA storage.r1 SIZE 'scale=1,workers=1';
5555

5656
> SELECT error ~~ 'sql-server: into results: Token error: ''Invalid object name ''cdc.lsn_time_mapping''.'' on server % executing on line 1 (code: %, state: %, class: %)' FROM mz_internal.mz_source_statuses WHERE name = 't1';
57-
true
57+
true

test/sql-server-cdc-old-syntax/gh-10981.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ INSERT INTO t1 VALUES (1, NULL, 1);
3838
FOR TABLES (t1);
3939

4040
> SELECT * FROM t1;
41-
1 <null> 1
41+
1 <null> 1

test/sql-server-cdc-old-syntax/max-slot-wal-keep-size.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ UPDATE t1 SET f2 = CONCAT(f2, pk);
5353
> CREATE CLUSTER REPLICA storage.r1 SIZE = 'scale=1,workers=1';
5454

5555
> SELECT count(*) FROM t1;
56-
200000
56+
200000

test/sql-server-cdc-old-syntax/privileges.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ contains:insufficient permissions for tables [dbo.t1_privileges] or capture inst
7979
! CREATE SOURCE t1_privileges_sql_server_failure
8080
FROM SQL SERVER CONNECTION sql_server_privileges_connection_capture_instance
8181
FOR TABLES (dbo.t1_privileges);
82-
contains:insufficient permissions for tables [] or capture instances [dbo_t1_privileges]
82+
contains:insufficient permissions for tables [] or capture instances [dbo_t1_privileges]

test/sql-server-cdc-old-syntax/replica-identity.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ EXEC sys.sp_cdc_enable_table @source_schema = 'dbo', @source_name = 'tbl_a', @ro
4747
FOR TABLES(tbl_a);
4848

4949
> SELECT * FROM tbl_a;
50-
1
50+
1

test/sql-server-cdc-old-syntax/setup/setup.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ USE msdb;
5555
EXEC sp_add_job @job_name = N'DummyTicker', @enabled = 1;
5656
EXEC sp_add_jobstep @job_name = N'DummyTicker', @step_name = N'run', @subsystem = N'TSQL', @database_name = N'test', @command = N'EXEC dbo.DummyTicker;';
5757
EXEC sp_add_jobserver @job_name = N'DummyTicker';
58-
EXEC msdb.dbo.sp_start_job N'DummyTicker';
58+
EXEC msdb.dbo.sp_start_job N'DummyTicker';

test/sql-server-cdc-old-syntax/subsource-names.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,4 @@ contains: unknown
8888
1
8989

9090
> SELECT * FROM baz.t2;
91-
5
91+
5

test/sql-server-cdc-old-syntax/subsource-resolution-empty.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ ALTER SYSTEM SET enable_create_table_from_source = true
6565
! CREATE SOURCE mz_source
6666
FROM SQL SERVER CONNECTION sql_server_test_connection
6767
FOR SCHEMAS (dne);
68-
contains:no tables found in referenced schemas: "dne"
68+
contains:no tables found in referenced schemas: "dne"

0 commit comments

Comments
 (0)