This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch update_bc
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/update_bc by this push:
new b814e6c6ae4 use Preconditions.checkArgument
b814e6c6ae4 is described below
commit b814e6c6ae4c6d46eff99a26f356bca46a5044f7
Author: HTHou <[email protected]>
AuthorDate: Tue Aug 19 09:39:48 2025 +0800
use Preconditions.checkArgument
---
.../iotdb/db/queryengine/plan/relational/planner/RelationPlanner.java | 2 +-
.../planner/assertions/InformationSchemaTableScanMatcher.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/planner/RelationPlanner.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/planner/RelationPlanner.java
index f3a739c6956..55f65db3d53 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/planner/RelationPlanner.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/planner/RelationPlanner.java
@@ -139,9 +139,9 @@ import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
+import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.collect.ImmutableList.toImmutableList;
import static com.google.common.collect.ImmutableSet.toImmutableSet;
-import static com.google.gson.internal.GsonPreconditions.checkArgument;
import static java.lang.String.format;
import static java.util.Objects.requireNonNull;
import static
org.apache.iotdb.commons.schema.table.InformationSchema.INFORMATION_DATABASE;
diff --git
a/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/queryengine/plan/relational/planner/assertions/InformationSchemaTableScanMatcher.java
b/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/queryengine/plan/relational/planner/assertions/InformationSchemaTableScanMatcher.java
index 9c819a14ce7..0f23cd61951 100644
---
a/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/queryengine/plan/relational/planner/assertions/InformationSchemaTableScanMatcher.java
+++
b/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/queryengine/plan/relational/planner/assertions/InformationSchemaTableScanMatcher.java
@@ -31,7 +31,7 @@ import java.util.Optional;
import java.util.Set;
import static com.google.common.base.MoreObjects.toStringHelper;
-import static com.google.gson.internal.GsonPreconditions.checkArgument;
+import static com.google.common.base.Preconditions.checkArgument;
import static
org.apache.iotdb.db.queryengine.plan.relational.planner.assertions.MatchResult.NO_MATCH;
public class InformationSchemaTableScanMatcher extends TableScanMatcher {