2024-03-27 10:33:25 +08:00
|
|
|
import { PostgreSQL } from 'src/parser/postgresql';
|
2024-01-19 21:10:00 +08:00
|
|
|
import { readSQL } from 'test/helper';
|
2023-11-09 11:53:40 +08:00
|
|
|
|
2024-03-27 10:33:25 +08:00
|
|
|
const postgresql = new PostgreSQL();
|
2023-11-09 11:53:40 +08:00
|
|
|
|
|
|
|
const features = {
|
|
|
|
drops: readSQL(__dirname, 'drop.sql'),
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('PgSQL Delete Syntax Tests', () => {
|
|
|
|
features.drops.forEach((drop) => {
|
|
|
|
it(drop, () => {
|
2024-03-27 10:33:25 +08:00
|
|
|
expect(postgresql.validate(drop).length).toBe(0);
|
2023-11-09 11:53:40 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|