2023-09-06 15:15:04 +08:00
|
|
|
import HiveSQL from '../../../../src/parser/hive';
|
|
|
|
import { readSQL } from '../../../helper';
|
|
|
|
|
|
|
|
const features = {
|
2023-10-13 11:16:36 +08:00
|
|
|
exports: readSQL(__dirname, 'export.sql'),
|
2023-09-06 15:15:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
describe('HiveSQL Export Syntax Tests', () => {
|
|
|
|
const parser = new HiveSQL();
|
|
|
|
|
|
|
|
features.exports.forEach((exp) => {
|
|
|
|
it(exp, () => {
|
|
|
|
expect(parser.validate(exp).length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|