lava-oushudb-dt-sql-parser/test/parser/plsql/syntax.test.ts
2023-05-04 10:13:05 +08:00

24 lines
667 B
TypeScript

import PLSQLParser from '../../../src/parser/plsql';
describe('PLSQL Syntax Tests', () => {
const parser = new PLSQLParser();
test('Test simple select Statement', () => {
const sql = 'select id,name from user1;';
const result = parser.validate(sql);
expect(result.length).toBe(0);
});
test(`Test select, where, order by`, () => {
const sql = `
select eid, emp_last, mgr_id, reportlevel
from reports_to_101 r, auto a
where r.c1 = a.c2
order by reportlevel, eid
`;
const result = parser.validate(sql);
expect(result.length).toBe(0);
});
});