bb0fad1dbe
* refactor: rename flinksql to flink * refactor: rename pgsql to postgresql * refactor: rename trinosql to trino * refactor: replace all default exports with named export * refactor: rename basicParser to basicSQL * refactor: rename basic-parser-types to types * refactor: replace arrow func with plain func
19 lines
450 B
TypeScript
19 lines
450 B
TypeScript
import { SparkSQL } from 'src/parser/spark';
|
|
import { readSQL } from 'test/helper';
|
|
|
|
const spark = new SparkSQL();
|
|
|
|
const features = {
|
|
loadData: readSQL(__dirname, 'loadData.sql'),
|
|
};
|
|
|
|
describe('SparkSQL Load Syntax Tests', () => {
|
|
Object.keys(features).forEach((key) => {
|
|
features[key].forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(spark.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
});
|