17 lines
448 B
TypeScript
17 lines
448 B
TypeScript
|
import fs from 'fs';
|
||
|
import path from 'path';
|
||
|
import FlinkSQL from "../../../../src/parser/flinksql";
|
||
|
|
||
|
// 注释 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);
|
||
|
});
|
||
|
});
|