2024-03-27 10:33:25 +08:00
|
|
|
import { PostgreSQL } from 'src/parser/postgresql';
|
2022-12-16 03:26:34 +08:00
|
|
|
|
2024-03-27 10:33:25 +08:00
|
|
|
describe('PostgreSQL Lexer tests', () => {
|
|
|
|
const mysqlParser = new PostgreSQL();
|
2022-12-16 03:26:34 +08:00
|
|
|
|
|
|
|
const sql = 'select id,name,sex from user1;';
|
|
|
|
const tokens = mysqlParser.getAllTokens(sql);
|
|
|
|
|
|
|
|
test('token counts', () => {
|
2023-05-30 14:44:03 +08:00
|
|
|
expect(tokens.length).toBe(12);
|
2022-12-16 03:26:34 +08:00
|
|
|
});
|
|
|
|
});
|