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

17 lines
377 B
TypeScript
Raw Normal View History

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