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

17 lines
397 B
TypeScript
Raw Normal View History

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