2023-12-19 19:22:27 +08:00
|
|
|
import { HiveSQL } from '../../../filters';
|
2023-09-06 15:15:04 +08:00
|
|
|
import { readSQL } from '../../../helper';
|
|
|
|
|
|
|
|
const parser = new HiveSQL();
|
|
|
|
|
|
|
|
const features = {
|
|
|
|
updates: readSQL(__dirname, 'update.sql'),
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('HiveSQL Update Syntax Tests', () => {
|
|
|
|
features.updates.forEach((update) => {
|
|
|
|
it(update, () => {
|
|
|
|
expect(parser.validate(update).length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|