Skip to content

Commit cb9a37a

Browse files
author
zhaoge
committed
feat(flinksql): delete console log
1 parent 36803b7 commit cb9a37a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/parser/flink/contextCollect/entityCollector.test.ts

-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ describe('Flink entity collector tests', () => {
6060
expect(tableCreateEntity.comment).toBe("'test table comment ABC.'");
6161

6262
expect(tableCreateEntity.columns.length).toBe(2);
63-
console.log(tableCreateEntity.columns);
6463
tableCreateEntity.columns.forEach((columEntity) => {
6564
expect(columEntity.entityContextType).toBe(EntityContextType.COLUMN_CREATE);
6665
expect(columEntity.belongStmt).toBe(tableCreateEntity.belongStmt);
@@ -312,7 +311,6 @@ describe('Flink entity collector tests', () => {
312311
flink.listen(collectListener as ParseTreeListener, insertTableContext);
313312

314313
const allEntities = collectListener.getEntities();
315-
console.log(allEntities);
316314
expect(allEntities.length).toBe(2);
317315

318316
expect(allEntities[0].entityContextType).toBe(EntityContextType.VIEW_CREATE);

0 commit comments

Comments
 (0)