fix: trino validation (#248)

* fix: #246 program does not match standaloneClause

* test: patch unit tests
This commit is contained in:
Hayden
2024-01-16 11:14:03 +08:00
committed by GitHub
parent 30b7f27486
commit 1038a3a828
13 changed files with 3912 additions and 3697 deletions

View File

@ -0,0 +1,16 @@
import { ImpalaSQL } from '../../filters';
const randomText = `dhsdansdnkla ndjnsla ndnalks`;
const unCompleteSQL = `CREATE TABLE`;
describe('Impala SQL validate invalid sql', () => {
const parser = new ImpalaSQL();
test('validate random text', () => {
expect(parser.validate(randomText).length).not.toBe(0);
});
test('validate unComplete sql', () => {
expect(parser.validate(unCompleteSQL).length).not.toBe(0);
});
});