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

17 lines
476 B
TypeScript
Raw Normal View History

import { HiveSQL } from 'src/parser/hive';
describe('HiveSQL Lexer tests', () => {
const hive = new HiveSQL();
2020-11-25 17:04:55 +08:00
test('select token counts', () => {
const sql = 'SELECT * FROM t1';
const tokens = hive.getAllTokens(sql);
expect(tokens.length).toBe(7);
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 = hive.getAllTokens(sql);
expect(tokens.length).toBe(6);
});
});