885b85e842
* feat: add showIndex parser rule * test: uncomment show index test cases * test: add unit tests about DML syntax to HiveSQL * test: add unit tests about export and import syntax to HiveSQL * refactor: recompile hive grammar * test: correct description of HiveSQL unit tests
11 lines
539 B
SQL
11 lines
539 B
SQL
INSERT INTO TABLE students
|
|
VALUES ('fred flintstone', 35, 1.28), ('barney rubble', 32, 2.32);
|
|
|
|
INSERT INTO TABLE pageviews PARTITION (datestamp = '2014-09-23')
|
|
VALUES ('jsmith', 'mail.com', 'sports.com'), ('jdoe', 'mail.com', null);
|
|
|
|
INSERT INTO TABLE pageviews PARTITION (datestamp)
|
|
VALUES ('tjohnson', 'sports.com', 'finance.com', '2014-09-23'), ('tlee', 'finance.com', null, '2014-09-21');
|
|
|
|
INSERT INTO TABLE pageviews
|
|
VALUES ('tjohnson', 'sports.com', 'finance.com', '2014-09-23'), ('tlee', 'finance.com', null, '2014-09-21'); |