0d9d3d65f3
* test: accurate description * refactor: optimize the use of tableName and viewName for --------- Co-authored-by: liuyi <liuyi@dtstack.com>
19 lines
478 B
TypeScript
19 lines
478 B
TypeScript
import SparkSQL from '../../../../src/parser/spark';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const parser = new SparkSQL();
|
|
|
|
const features = {
|
|
useDatabase: readSQL(__dirname, 'useDatabase.sql'),
|
|
};
|
|
|
|
describe('SparkSQL Use Database Syntax Tests', () => {
|
|
Object.keys(features).forEach((key) => {
|
|
features[key].forEach((sql) => {
|
|
it(sql, () => {
|
|
expect(parser.validate(sql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
});
|