lava-oushudb-dt-sql-parser/test/parser/hive/lexer.test.ts

17 lines
495 B
TypeScript
Raw Normal View History

2023-05-04 10:13:05 +08:00
import HiveSQL from '../../../src/parser/hive';
describe('HiveSQL Lexer tests', () => {
const parser = new HiveSQL();
2020-11-25 17:04:55 +08:00
test('select token counts', () => {
const sql = 'SELECT * FROM t1';
const tokens = parser.getAllTokens(sql);
2023-05-04 10:13:05 +08:00
expect(tokens.length - 1).toBe(4);
2020-11-25 17:04:55 +08:00
});
2020-11-25 17:04:55 +08:00
test('select token counts', () => {
const sql = 'show create table_name;';
const tokens = parser.getAllTokens(sql);
2023-05-04 10:13:05 +08:00
expect(tokens.length - 1).toBe(4);
});
});