@@ -155,15 +155,15 @@ create table s8_no_schema_field (
155
155
properties.bootstrap.server = 'message_queue:29092'
156
156
) ROW FORMAT DEBEZIUM_JSON
157
157
158
- statement ok
158
+ statement error without schema registry
159
159
create table s9 with (
160
160
connector = 'kafka',
161
161
topic = 'avro_bin',
162
162
properties.bootstrap.server = 'message_queue:29092',
163
163
scan.startup.mode = 'earliest'
164
164
) row format avro row schema location 'file:///risingwave/avro-simple-schema.avsc'
165
165
166
- statement ok
166
+ statement error without schema registry
167
167
create table s10 with (
168
168
connector = 'kafka',
169
169
topic = 'avro_c_bin',
@@ -262,7 +262,7 @@ create source s17 with (
262
262
scan.startup.mode = 'earliest'
263
263
) row format protobuf message 'test.User' row schema location 'file:///risingwave/proto-complex-schema'
264
264
265
- statement ok
265
+ statement error without schema registry
266
266
create source s18 with (
267
267
connector = 'kafka',
268
268
topic = 'avro_c_bin',
@@ -560,15 +560,15 @@ select id, first_name, last_name, email from s8_no_schema_field;
560
560
1004 Anne1 Kretchmar
[email protected]
561
561
1005 add add2 add
562
562
563
- query IITFFBTT
564
- select id, sequence_id, name, score, avg_score, is_lasted, entrance_date, birthday, passed from s9;
565
- ----
566
- 32 64 str_value 32 64 t 1970-01-01 1970-01-01 00:00:00+00:00 1 mon 1 day 00:00:01
567
-
568
- query ITITT
569
- select id, code, timestamp, xfas, contacts, sex from s10;
570
- ----
571
- 100 abc 1473305798 {"(0,200,10.0.0.1)","(1,400,10.0.0.2)"} ("{1xxx,2xxx}","{1xxx,2xxx}") MALE
563
+ # query IITFFBTT
564
+ # select id, sequence_id, name, score, avg_score, is_lasted, entrance_date, birthday, passed from s9;
565
+ # ----
566
+ # 32 64 str_value 32 64 t 1970-01-01 1970-01-01 00:00:00+00:00 1 mon 1 day 00:00:01
567
+ #
568
+ # query ITITT
569
+ # select id, code, timestamp, xfas, contacts, sex from s10;
570
+ # ----
571
+ # 100 abc 1473305798 {"(0,200,10.0.0.1)","(1,400,10.0.0.2)"} ("{1xxx,2xxx}","{1xxx,2xxx}") MALE
572
572
573
573
query ITITT
574
574
select id, code, timestamp, xfas, contacts, sex from s11;
@@ -706,11 +706,11 @@ drop table s8
706
706
statement ok
707
707
drop table s8_no_schema_field
708
708
709
- statement ok
710
- drop table s9
711
-
712
- statement ok
713
- drop table s10
709
+ # statement ok
710
+ # drop table s9
711
+ #
712
+ # statement ok
713
+ # drop table s10
714
714
715
715
statement ok
716
716
drop table s11
@@ -733,8 +733,8 @@ drop table s16
733
733
statement ok
734
734
drop source s17
735
735
736
- statement ok
737
- drop source s18
736
+ # statement ok
737
+ # drop source s18
738
738
739
739
statement ok
740
740
drop table s20
0 commit comments