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
35 lines
942 B
TypeScript
35 lines
942 B
TypeScript
import { ImpalaSQL } from 'src/parser/impala';
|
|
import { readSQL } from 'test/helper';
|
|
|
|
const impala = new ImpalaSQL();
|
|
|
|
const features = {
|
|
tables: readSQL(__dirname, 'alter_table.sql'),
|
|
dbs: readSQL(__dirname, 'alter_db.sql'),
|
|
views: readSQL(__dirname, 'alter_view.sql'),
|
|
};
|
|
|
|
describe('ImpalaSQL Alter Syntax Tests', () => {
|
|
describe('ALTER TABLE', () => {
|
|
features.tables.forEach((db) => {
|
|
it(db, () => {
|
|
expect(impala.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
describe('ALTER DATABASE', () => {
|
|
features.dbs.forEach((db) => {
|
|
it(db, () => {
|
|
expect(impala.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
describe('ALTER VIEW', () => {
|
|
features.views.forEach((db) => {
|
|
it(db, () => {
|
|
expect(impala.validate(db).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
});
|