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

19 lines
466 B
TypeScript
Raw Normal View History

import SparkSQL from '../../../../src/parser/spark';
import { readSQL } from '../../../helper';
const parser = new SparkSQL();
const features = {
loadData: readSQL(__dirname, 'loadData.sql'),
};
describe('SparkSQL Insert Syntax Tests', () => {
Object.keys(features).forEach((key) => {
features[key].forEach((sql) => {
it(sql, () => {
expect(parser.validate(sql).length).toBe(0);
});
});
});
});