2024-03-27 10:33:25 +08:00
|
|
|
import { ImpalaSQL } from 'src/parser/impala';
|
2024-01-19 21:10:00 +08:00
|
|
|
import { readSQL } from 'test/helper';
|
2023-11-28 21:11:07 +08:00
|
|
|
|
2024-03-27 10:33:25 +08:00
|
|
|
const impala = new ImpalaSQL();
|
2023-11-28 21:11:07 +08:00
|
|
|
|
|
|
|
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, () => {
|
2024-03-27 10:33:25 +08:00
|
|
|
expect(impala.validate(db).length).toBe(0);
|
2023-11-28 21:11:07 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
describe('ALTER DATABASE', () => {
|
|
|
|
features.dbs.forEach((db) => {
|
|
|
|
it(db, () => {
|
2024-03-27 10:33:25 +08:00
|
|
|
expect(impala.validate(db).length).toBe(0);
|
2023-11-28 21:11:07 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
describe('ALTER VIEW', () => {
|
|
|
|
features.views.forEach((db) => {
|
|
|
|
it(db, () => {
|
2024-03-27 10:33:25 +08:00
|
|
|
expect(impala.validate(db).length).toBe(0);
|
2023-11-28 21:11:07 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|