lava-oushudb-dt-sql-parser/test/parser/hive/lexer.test.ts
2023-05-04 10:13:05 +08:00

17 lines
495 B
TypeScript

import HiveSQL from '../../../src/parser/hive';
describe('HiveSQL Lexer tests', () => {
const parser = new HiveSQL();
test('select token counts', () => {
const sql = 'SELECT * FROM t1';
const tokens = parser.getAllTokens(sql);
expect(tokens.length - 1).toBe(4);
});
test('select token counts', () => {
const sql = 'show create table_name;';
const tokens = parser.getAllTokens(sql);
expect(tokens.length - 1).toBe(4);
});
});