* test: remove barrier files to improve unit testing performance * chore: change check-types command
		
			
				
	
	
		
			17 lines
		
	
	
		
			508 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			508 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import TrinoSQL from 'src/parser/trinosql';
 | |
| import { readSQL } from 'test/helper';
 | |
| 
 | |
| const features = {
 | |
|     refreshMaterializedView: readSQL(__dirname, 'refresh_materialized_view.sql'),
 | |
| };
 | |
| 
 | |
| describe('TrinoSQL Refresh Materialized View Statements Syntax Tests', () => {
 | |
|     const parser = new TrinoSQL();
 | |
|     // refresh materialized view statements
 | |
|     features.refreshMaterializedView.forEach((sql) => {
 | |
|         it(sql, () => {
 | |
|             expect(parser.validate(sql).length).toBe(0);
 | |
|         });
 | |
|     });
 | |
| });
 |