3c7c59fb70
* feat: optimize the strategy of finding the right range * test: apply commentOtherLine util to all suggestion tests * test: decomment suggestion test cases * test: add suggestion test cases in multiple statements * chore: improve comments * test: update log info in test
21 lines
589 B
SQL
21 lines
589 B
SQL
SELECT * FROM -- unfinished
|
|
|
|
CREATE VIEW mydb.bro_view AS SELECT * FROM mydb.sale_tbl;
|
|
|
|
CREATE TEMPORARY EXTERNAL TABLE list_bucket_multiple (col1 STRING, col2 INT, col3 STRING);
|
|
|
|
ALTER VIEW myview1 SET TBLPROPERTIES ('author'='hayden','date'='2023-09-04')
|
|
|
|
CREATE TABLE db. ; -- unfinished
|
|
|
|
DROP CONNECTOR connector1;
|
|
|
|
SET ROLE `admin`;
|
|
|
|
INSERT INTO VALUES (100, 99.9 / 10, 'abc', true, now ()); -- unfinished
|
|
|
|
ALTER TABLE tbl1 RENAME TO tbl2;
|
|
|
|
ALTER SCHEMA database_name SET OWNER USER `admin`;
|
|
|
|
INSERT OVERWRITE LOCAL DIRECTORY '/path/to/output' SELECT col1, col2 FROM ; -- unfinished |