2023-06-07 09:34:24 +08:00
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
2023-12-19 19:22:27 +08:00
|
|
|
import { FlinkSQL } from '../../../filters';
|
2023-06-07 09:34:24 +08:00
|
|
|
|
|
|
|
// 注释 sql 不做切割
|
|
|
|
const features = {
|
2023-10-13 11:16:36 +08:00
|
|
|
comments: fs.readFileSync(path.join(__dirname, 'fixtures', 'comment.sql'), 'utf-8'),
|
2023-06-07 09:34:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
describe('FlinkSQL Comment Syntax Tests', () => {
|
|
|
|
const parser = new FlinkSQL();
|
|
|
|
|
|
|
|
test('Comment SQL Statement', () => {
|
|
|
|
expect(parser.validate(features.comments).length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|