lava-oushudb-dt-sql-parser/test/parser/spark/syntax/drop.test.ts
Hayden 8f72a5af60
Fix/export abstract visitor (#237)
* fix: #236 export AbstractParseTreeVisitor

* build: set isolatedModules true

* feat: import parser about from filters
2023-12-19 19:22:27 +08:00

22 lines
624 B
TypeScript

import { SparkSQL } from '../../../filters';
import { readSQL } from '../../../helper';
const parser = new SparkSQL();
const features = {
dropDatabase: readSQL(__dirname, 'dropDatabase.sql'),
dropFunction: readSQL(__dirname, 'dropFunction.sql'),
dropTable: readSQL(__dirname, 'dropTable.sql'),
dropView: readSQL(__dirname, 'dropView.sql'),
};
describe('SparkSQL Drop Syntax Tests', () => {
Object.keys(features).forEach((key) => {
features[key].forEach((sql) => {
it(sql, () => {
expect(parser.validate(sql).length).toBe(0);
});
});
});
});