lava-oushudb-dt-sql-parser/test/parser/hive/validateInvalidSql.test.ts
Hayden ecbbee32c7
test: remove barrier files to improve unit testing performance (#249)
* test: remove barrier files to improve unit testing performance

* chore: change check-types command
2024-01-19 21:10:00 +08:00

17 lines
452 B
TypeScript

import HiveSQL from 'src/parser/hive';
const randomText = `dhsdansdnkla ndjnsla ndnalks`;
const unCompleteSQL = `CREATE TABLE`;
describe('Hive SQL validate invalid sql', () => {
const parser = new HiveSQL();
test('validate random text', () => {
expect(parser.validate(randomText).length).not.toBe(0);
});
test('validate unComplete sql', () => {
expect(parser.validate(unCompleteSQL).length).not.toBe(0);
});
});