2023-12-19 19:22:27 +08:00
|
|
|
import { FlinkSQL } from '../../filters';
|
2021-01-05 17:41:21 +08:00
|
|
|
|
2020-10-22 19:57:13 +08:00
|
|
|
describe('FlinkSQL Lexer tests', () => {
|
2021-01-05 17:41:21 +08:00
|
|
|
const parser = new FlinkSQL();
|
2020-10-22 19:57:13 +08:00
|
|
|
|
|
|
|
const sql = 'SELECT * FROM table1';
|
|
|
|
const tokens = parser.getAllTokens(sql);
|
|
|
|
test('token counts', () => {
|
2023-05-30 14:44:03 +08:00
|
|
|
expect(tokens.length).toBe(7);
|
2020-10-22 19:57:13 +08:00
|
|
|
});
|
|
|
|
});
|