This is an automated email from the ASF dual-hosted git repository. asf-gitbox-commits pushed a commit to branch PHOENIX-7876-feature in repository https://gitbox.apache.org/repos/asf/phoenix.git
commit 8f2834c321eebc1b8064b97553ad0896625dcb85 Author: Andrew Purtell <[email protected]> AuthorDate: Sat Jun 6 09:24:17 2026 -0700 [WIP] 'Truncate Table' -> 'TRUNCATE TABLE' --- .../src/main/java/org/apache/phoenix/jdbc/PhoenixStatement.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixStatement.java b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixStatement.java index 20edcbe34d..2a76e8a6fa 100644 --- a/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixStatement.java +++ b/phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixStatement.java @@ -1263,7 +1263,7 @@ public class PhoenixStatement implements PhoenixMonitoredStatement, SQLCloseable return new BaseMutationPlan(context, this.getOperation()) { @Override public ExplainPlan getExplainPlan() throws SQLException { - return new ExplainPlan(Collections.singletonList("Truncate Table")); + return new ExplainPlan(Collections.singletonList("TRUNCATE TABLE")); } @Override
