Skip to content

Commit

Permalink
delete logs
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrivachev committed Jun 30, 2023
1 parent be2d3f2 commit 5411d7f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions server/src/MacroCompilationServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ export class MacroCompilationServer {
n => n.getValue().database === db && n.getValue().schema === schema && n.getValue().name === queryParams.table,
);
if (node) {
console.log('before analyzeModel', node.getValue().name);
await this.destinationContext.analyzeModel(node, this.abortController.signal);
console.log('after analyzeModel', node.getValue().name);
if (this.abortController.signal.aborted) {
return;
}
Expand Down
1 change: 0 additions & 1 deletion server/src/ZetaSqlWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ export abstract class ZetaSqlWrapper {

registerTable(table: TableDefinition): void {
if (!this.isTableRegistered(table)) {
console.log('Registering table', table.getTableNameInZetaSql());
this.registeredTables.push(table);
}

Expand Down

0 comments on commit 5411d7f

Please sign in to comment.