fix: trino validation (#248)
* fix: #246 program does not match standaloneClause * test: patch unit tests
This commit is contained in:
16
test/parser/impala/validateInvalidSql.test.ts
Normal file
16
test/parser/impala/validateInvalidSql.test.ts
Normal 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);
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user