e34a9f6128
* fix: correct suggetion logic in multiple sql case * test: add multiple sql test case of suggestion * feat: export SyntaxContextType as enum
19 lines
345 B
SQL
19 lines
345 B
SQL
CREATE TABLE orders (
|
|
order_uid BIGINT,
|
|
product_id BIGINT,
|
|
price DECIMAL(32, 2),
|
|
order_time TIMESTAMP(3)
|
|
) WITH (
|
|
'connector' = 'datagen'
|
|
);
|
|
|
|
CREATE TABLE orders (
|
|
order_uid BIGINT,
|
|
product_id BIGINT,
|
|
price DECIMAL(32, 2),
|
|
order_time TIMESTAMP(3)
|
|
) WITH (
|
|
'connector' = 'datagen'
|
|
);
|
|
|
|
use cat1. |