8f72a5af60
* fix: #236 export AbstractParseTreeVisitor * build: set isolatedModules true * feat: import parser about from filters
19 lines
434 B
TypeScript
19 lines
434 B
TypeScript
import { ImpalaSQL } from '../../../filters';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const parser = new ImpalaSQL();
|
|
|
|
const features = {
|
|
shows: readSQL(__dirname, 'show.sql'),
|
|
};
|
|
|
|
describe('ImpalaSQL Show Syntax Tests', () => {
|
|
describe('SHOW', () => {
|
|
features.shows.forEach((db) => {
|
|
it(db, () => {
|
|
expect(parser.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
});
|