c4030929b2
* feat: update hive grammar to adapt to c3 * feat: support viewName, dbName, fnName autoComplete to hive * test: add hive suggestion unit test * test: optimze flink suggestion unit tests
20 lines
274 B
SQL
20 lines
274 B
SQL
INSERT INTO db.tb ;
|
|
|
|
SELECT * FROM db.;
|
|
|
|
CREATE TABLE db. VALUES;
|
|
|
|
DROP TABLE IF EXISTS db.a;
|
|
|
|
CREATE OR REPLACE VIEW db.v;
|
|
|
|
DROP VIEW db.v ;
|
|
|
|
CREATE FUNCTION fn1;
|
|
|
|
SELECT name, calculate_age(birthdate) AS age FROM students;
|
|
|
|
CREATE DATABASE db;
|
|
|
|
DROP SCHEMA IF EXISTS sch;
|