Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
hubgeter committed Dec 2, 2024
1 parent b954d12 commit a64be31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ public class MaxComputeExternalCatalog extends ExternalCatalog {
private long splitRowCount;
private long splitByteSize;

int connectTimeout;
int readTimeout;
int retryTimes;
private int connectTimeout;
private int readTimeout;
private int retryTimes;

private static final Map<String, ZoneId> REGION_ZONE_MAP;
private static final List<String> REQUIRED_PROPERTIES = ImmutableList.of(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ public MaxComputeScanNode(PlanNodeId id, TupleDescriptor desc,
SelectedPartitions selectedPartitions, boolean needCheckColumnPriv) {
this(id, desc, "MCScanNode", StatisticalType.MAX_COMPUTE_SCAN_NODE,
selectedPartitions, needCheckColumnPriv);
}

// For old planner
public MaxComputeScanNode(PlanNodeId id, TupleDescriptor desc, boolean needCheckColumnPriv) {
Expand Down

0 comments on commit a64be31

Please sign in to comment.