2023-12-19 19:22:27 +08:00
|
|
|
import { PostgresSQL } from '../../../filters';
|
2023-11-09 11:53:40 +08:00
|
|
|
import { readSQL } from '../../../helper';
|
|
|
|
|
2023-12-19 19:22:27 +08:00
|
|
|
const parser = new PostgresSQL();
|
2023-11-09 11:53:40 +08:00
|
|
|
|
|
|
|
const features = {
|
|
|
|
others: readSQL(__dirname, 'others.sql'),
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('PgSQL Other SQL Syntax Tests', () => {
|
|
|
|
features.others.forEach((other) => {
|
|
|
|
it(other, () => {
|
|
|
|
expect(parser.validate(other).length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|