Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Aug 7, 2024
1 parent 61a3df4 commit 0c303e4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,8 @@ public Statistics visitPhysicalFileScan(PhysicalFileScan fileScan, Void context)
public Statistics visitPhysicalStorageLayerAggregate(
PhysicalStorageLayerAggregate storageLayerAggregate, Void context) {
PhysicalRelation relation = storageLayerAggregate.getRelation();
Preconditions.checkArgument(relation instanceof PhysicalOlapScan, "StorageLayerAggregate only support OlapTable");
Preconditions.checkArgument(relation instanceof PhysicalOlapScan,
"StorageLayerAggregate only support OlapTable");
return relation.accept(this, context);

}
Expand Down

0 comments on commit 0c303e4

Please sign in to comment.