lava-oushudb-dt-sql-parser/test/parser/hive/syntax/selectStatement.test.ts

17 lines
391 B
TypeScript
Raw Normal View History

import { HiveSQL } from '../../../filters';
import { readSQL } from '../../../helper';
const parser = new HiveSQL();
const features = {
selects: readSQL(__dirname, 'select.sql'),
};
describe('HiveSQL Select Syntax Tests', () => {
features.selects.forEach((select) => {
it(select, () => {
expect(parser.validate(select).length).toBe(0);
});
});
});