lava-oushudb-dt-sql-parser/test/parser/impala/syntax/alterStatement.test.ts

35 lines
945 B
TypeScript
Raw Normal View History

import { ImpalaSQL } from '../../../filters';
import { readSQL } from '../../../helper';
const parser = 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(parser.validate(db).length).toBe(0);
});
});
});
describe('ALTER DATABASE', () => {
features.dbs.forEach((db) => {
it(db, () => {
expect(parser.validate(db).length).toBe(0);
});
});
});
describe('ALTER VIEW', () => {
features.views.forEach((db) => {
it(db, () => {
expect(parser.validate(db).length).toBe(0);
});
});
});
});