You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE kafka_test.ustime (
id text primary key,
name text,
flg boolean,
createdTS text,
systems_sids LIST,
)
I write data without a schema, I create tables manually. but it seems that Kaffka Connect does not allow me to write down the system sids field. Help me correctly generate the DDL for the database, I can send you the entire error log
The text was updated successfully, but these errors were encountered:
topic
{
"id": "f0e5b61c-5341-4f80-8f0b-fac60521d5ae",
"name": "text",
"flg": true,
"createdTS": "newtime",
"systems_sids": [
{
"sid": [],
"system": "s1"
},
{
"sid":[],
"system": "s2"
},
{
"sid": [],
"system": "s3"
},
{
"sid": [],
"system": "s4"
},
{
"sid": [],
"system": "s5"
},
{
"sid": [],
"system": "s6"
}
],
}
table ddl
CREATE TABLE kafka_test.ustime (
id text primary key,
name text,
flg boolean,
createdTS text,
systems_sids LIST,
)
I write data without a schema, I create tables manually. but it seems that Kaffka Connect does not allow me to write down the system sids field. Help me correctly generate the DDL for the database, I can send you the entire error log
The text was updated successfully, but these errors were encountered: