17 lines
391 B
TypeScript
17 lines
391 B
TypeScript
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);
|
|
});
|
|
});
|
|
});
|