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

17 lines
392 B
TypeScript
Raw Normal View History

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