Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: xxchan <[email protected]>
  • Loading branch information
xxchan committed Oct 11, 2024
1 parent 588ea5d commit ae0dc87
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ table description s1 NULL NULL
query TT
show create source s1;
----
public.s1 CREATE SOURCE s1 (v1 INT, v2 CHARACTER VARYING, v3 INT) WITH (connector = 'kafka', topic = 'kafka_alter', properties.bootstrap.server = 'message_queue:29092', scan.startup.mode = 'earliest') FORMAT PLAIN ENCODE JSON
public.s1 CREATE SOURCE s1 (v1 INT, v2 CHARACTER VARYING, v3 INT) WITH (connector = 'kafka', properties.bootstrap.server = 'message_queue:29092', topic = 'kafka_alter', scan.startup.mode = 'earliest') FORMAT PLAIN ENCODE JSON


system ok
Expand Down Expand Up @@ -269,3 +269,9 @@ select * from t

statement ok
drop table t;

statement ok
drop source s1

statement ok
drop source s2

0 comments on commit ae0dc87

Please sign in to comment.