8f72a5af60
* fix: #236 export AbstractParseTreeVisitor * build: set isolatedModules true * feat: import parser about from filters
17 lines
438 B
TypeScript
17 lines
438 B
TypeScript
import fs from 'fs';
|
|
import path from 'path';
|
|
import { FlinkSQL } from '../../../filters';
|
|
|
|
// 注释 sql 不做切割
|
|
const features = {
|
|
comments: fs.readFileSync(path.join(__dirname, 'fixtures', 'comment.sql'), 'utf-8'),
|
|
};
|
|
|
|
describe('FlinkSQL Comment Syntax Tests', () => {
|
|
const parser = new FlinkSQL();
|
|
|
|
test('Comment SQL Statement', () => {
|
|
expect(parser.validate(features.comments).length).toBe(0);
|
|
});
|
|
});
|