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

17 lines
479 B
TypeScript

import { HiveSQL } from '../../../src';
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).toBe(4);
});
test('select token counts', () => {
const sql = 'show create table_name;';
const tokens = parser.getAllTokens(sql);
expect(tokens.length).toBe(4);
});
});