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

17 lines
391 B
TypeScript
Raw Normal View History

import FlinkSQL from "../../../../src/parser/flinksql";
import { readSQL } from "../../../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);
});
});
});