lava-oushudb-dt-sql-parser/test/parser/impala/syntax/show.test.ts

19 lines
434 B
TypeScript
Raw Normal View History

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);
});
});
});
});