Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed Jul 21, 2020
1 parent 9a946f3 commit 7d613d0
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,8 @@ protected Scope visitAnalyze(Analyze node, Optional<Scope> scope)
mapFromProperties(node.getProperties()),
session,
metadata,
accessControl, analysis.getParameters());
accessControl,
analysis.getParameters());
TableHandle tableHandle = metadata.getTableHandleForStatisticsCollection(session, tableName, analyzeProperties)
.orElseThrow(() -> semanticException(TABLE_NOT_FOUND, node, "Table '%s' does not exist", tableName));

Expand Down Expand Up @@ -633,7 +634,8 @@ protected Scope visitCreateTableAsSelect(CreateTableAsSelect node, Optional<Scop
mapFromProperties(node.getProperties()),
session,
metadata,
accessControl, analysis.getParameters());
accessControl,
analysis.getParameters());

ConnectorTableMetadata tableMetadata = new ConnectorTableMetadata(targetTable.asSchemaTableName(), columns.build(), properties, node.getComment());

Expand Down

0 comments on commit 7d613d0

Please sign in to comment.