lava-oushudb-dt-sql-parser/test/parser/hive/syntax/authorizationStatement.test.ts

17 lines
420 B
TypeScript
Raw Normal View History

import { HiveSQL } from 'src/parser/hive';
import { readSQL } from 'test/helper';
const hive = new HiveSQL();
const features = {
manageRoles: readSQL(__dirname, 'authorization.sql'),
};
describe('HiveSQL Related To Authorization Tests', () => {
features.manageRoles.forEach((manageRole) => {
it(manageRole, () => {
expect(hive.validate(manageRole).length).toBe(0);
});
});
});