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

17 lines
394 B
TypeScript
Raw Normal View History

import { PostgresSQL } from '../../../filters';
import { readSQL } from '../../../helper';
const parser = new PostgresSQL();
const features = {
alters: readSQL(__dirname, 'alter.sql'),
};
describe('PgSQL Create Syntax Tests', () => {
features.alters.forEach((alters) => {
it(alters, () => {
expect(parser.validate(alters).length).toBe(0);
});
});
});