lava-oushudb-dt-sql-parser/test/parser/impala/syntax/update.test.ts
Hayden ecbbee32c7
test: remove barrier files to improve unit testing performance (#249)
* test: remove barrier files to improve unit testing performance

* chore: change check-types command
2024-01-19 21:10:00 +08:00

19 lines
435 B
TypeScript

import ImpalaSQL from 'src/parser/impala';
import { readSQL } from 'test/helper';
const parser = new ImpalaSQL();
const features = {
update: readSQL(__dirname, 'update.sql'),
};
describe('ImpalaSQL Update Syntax Tests', () => {
describe('UPDATE', () => {
features.update.forEach((db) => {
it(db, () => {
expect(parser.validate(db).length).toBe(0);
});
});
});
});