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
24 lines
634 B
TypeScript
24 lines
634 B
TypeScript
import HiveSQL from '../../../../src/parser/hive';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const parser = new HiveSQL();
|
|
|
|
const features = {
|
|
insertFromQueries: readSQL(__dirname, 'insertFromQuery.sql'),
|
|
insertFromValues: readSQL(__dirname, 'insertFormValues.sql')
|
|
};
|
|
|
|
describe('HiveSQL Insert Syntax Tests', () => {
|
|
features.insertFromQueries.forEach((ifq) => {
|
|
it(ifq, () => {
|
|
expect(parser.validate(ifq).length).toBe(0);
|
|
});
|
|
});
|
|
|
|
features.insertFromValues.forEach((ifv) => {
|
|
it(ifv, () => {
|
|
expect(parser.validate(ifv).length).toBe(0);
|
|
});
|
|
});
|
|
});
|