This is an automated email from the ASF dual-hosted git repository.
michaelsmith pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
The following commit(s) were added to refs/heads/master by this push:
new 9ac55828f IMPALA-12540: (Fixup) Add EventSequence arg to load
9ac55828f is described below
commit 9ac55828f3a6eb3dba0308e95ef53e95861a8b23
Author: Michael Smith <[email protected]>
AuthorDate: Thu Mar 28 11:20:14 2024 -0700
IMPALA-12540: (Fixup) Add EventSequence arg to load
Adds a new argument from IMPALA-12443 to Table#load.
Change-Id: I46185e9c0095cc470178e0d2d45d10a1803bff99
Reviewed-on: http://gerrit.cloudera.org:8080/21222
Reviewed-by: Wenzhe Zhou <[email protected]>
Reviewed-by: Jason Fehr <[email protected]>
Tested-by: Michael Smith <[email protected]>
---
fe/src/main/java/org/apache/impala/catalog/SystemTable.java | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/fe/src/main/java/org/apache/impala/catalog/SystemTable.java
b/fe/src/main/java/org/apache/impala/catalog/SystemTable.java
index 19129a508..3f5f59da4 100644
--- a/fe/src/main/java/org/apache/impala/catalog/SystemTable.java
+++ b/fe/src/main/java/org/apache/impala/catalog/SystemTable.java
@@ -42,6 +42,7 @@ import org.apache.impala.thrift.TSystemTableName;
import org.apache.impala.thrift.TTable;
import org.apache.impala.thrift.TTableDescriptor;
import org.apache.impala.thrift.TTableType;
+import org.apache.impala.util.EventSequence;
import org.apache.impala.util.TResultRowBuilder;
import com.google.common.collect.ImmutableMap;
import com.google.common.base.Preconditions;
@@ -154,8 +155,8 @@ public final class SystemTable extends Table {
@Override
public void load(boolean reuseMetadata, IMetaStoreClient client,
- org.apache.hadoop.hive.metastore.api.Table msTbl, String reason)
- throws TableLoadingException {
+ org.apache.hadoop.hive.metastore.api.Table msTbl, String reason,
+ EventSequence catalogTimeline) throws TableLoadingException {
// Table is always loaded.
Preconditions.checkState(false);
}