0d9d3d65f3
* test: accurate description * refactor: optimize the use of tableName and viewName for --------- Co-authored-by: liuyi <liuyi@dtstack.com>
17 lines
396 B
TypeScript
17 lines
396 B
TypeScript
import SparkSQL from '../../../../src/parser/spark';
|
|
import { readSQL } from '../../../helper';
|
|
|
|
const parser = new SparkSQL();
|
|
|
|
const features = {
|
|
cache: readSQL(__dirname, 'cache.sql'),
|
|
};
|
|
|
|
describe('Spark Cache Syntax Tests', () => {
|
|
features.cache.forEach((itemSql) => {
|
|
it(itemSql, () => {
|
|
expect(parser.validate(itemSql).length).toBe(0);
|
|
});
|
|
});
|
|
});
|