lava-oushudb-dt-sql-parser/test/parser/flinksql/syntax/showStatement.test.ts

17 lines
376 B
TypeScript
Raw Normal View History

import FlinkSQL from 'src/parser/flinksql';
import { readSQL } from 'test/helper';
const features = {
shows: readSQL(__dirname, 'show.sql'),
};
describe('FlinkSQL Show Syntax Tests', () => {
const parser = new FlinkSQL();
features.shows.forEach((sql) => {
it(sql, () => {
expect(parser.validate(sql).length).toBe(0);
});
});
});