Skip to content

Commit

Permalink
fix switch case.
Browse files Browse the repository at this point in the history
  • Loading branch information
hubgeter committed Nov 24, 2024
1 parent ac21141 commit d726e9a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -440,15 +440,15 @@ private LogicalPlan getLogicalPlan(TableIf table, UnboundRelation unboundRelatio
unboundRelation.getTableSample(),
unboundRelation.getTableSnapshot());
}
case ICEBERG_EXTERNAL_TABLE:
case PAIMON_EXTERNAL_TABLE:
case MAX_COMPUTE_EXTERNAL_TABLE: {
return new LogicalFileScan(unboundRelation.getRelationId(), (MaxComputeExternalTable) table,
qualifierWithoutTableName,
((MaxComputeExternalTable) table).getAllPartitions(),
unboundRelation.getTableSample(),
unboundRelation.getTableSnapshot());
}
case ICEBERG_EXTERNAL_TABLE:
case PAIMON_EXTERNAL_TABLE:
case TRINO_CONNECTOR_EXTERNAL_TABLE:
case LAKESOUl_EXTERNAL_TABLE:
return new LogicalFileScan(unboundRelation.getRelationId(), (ExternalTable) table,
Expand Down

0 comments on commit d726e9a

Please sign in to comment.