8f72a5af60
* fix: #236 export AbstractParseTreeVisitor * build: set isolatedModules true * feat: import parser about from filters
17 lines
412 B
TypeScript
17 lines
412 B
TypeScript
import { TrinoSQL } from '../../../filters';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const features = {
|
|
call: readSQL(__dirname, 'call.sql'),
|
|
};
|
|
|
|
describe('TrinoSQL Call Statements Syntax Tests', () => {
|
|
const parser = new TrinoSQL();
|
|
// call statements
|
|
features.call.forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|