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 = {
|
|
|
|
selects: readSQL(__dirname, 'select.sql'),
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('PgSQL Select Syntax Tests', () => {
|
|
|
|
features.selects.forEach((select) => {
|
|
|
|
it(select, () => {
|
2024-03-27 10:33:25 +08:00
|
|
|
expect(postgresql.validate(select).length).toBe(0);
|
2023-11-09 11:53:40 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|