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
Copy file name to clipboardExpand all lines: test/flink.spec.js
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -412,6 +412,20 @@ describe('Flink', () => {
412
412
"SELECT `name`, `eventTime`, `eventDetail` FROM (SELECT concat('AK中文信息') AS `name`, CAST(`event_time` AS VARCHAR) AS `eventTime`, JSON_OBJECT('risk-tag' VALUE `risk_tag`, 'abc' VALUE (10 * 2), 'user-agent' VALUE JSON_OBJECT('city' VALUE 'New York' ON NULL NULL, 'postalCode' VALUE '10001' ON NULL ABSENT)) AS `eventDetail` FROM `check_risk`)"
413
413
]
414
414
},
415
+
{
416
+
title: "create table",
417
+
sql: [
418
+
"CREATE TABLE Orders (`user` BIGINT)",
419
+
"CREATE TABLE `Orders` (`user` BIGINT)",
420
+
],
421
+
},
422
+
{
423
+
title: "create table with options",
424
+
sql: [
425
+
"CREATE TABLE Orders (`user` BIGINT) WITH ('connector' = 'kafka')",
426
+
"CREATE TABLE `Orders` (`user` BIGINT) WITH ('connector' = 'kafka')",
0 commit comments