This is an automated email from the ASF dual-hosted git repository. xxyu pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/kylin.git
The following commit(s) were added to refs/heads/main by this push: new 121a8a1 KYLIN-5162 Fix non select sql pushdown 121a8a1 is described below commit 121a8a1d9fadf988a45029caf39c6249a95d5ba9 Author: yaqian.zhang <598593...@qq.com> AuthorDate: Thu Feb 24 15:00:14 2022 +0800 KYLIN-5162 Fix non select sql pushdown --- query/src/main/java/org/apache/kylin/query/util/PushDownUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/query/src/main/java/org/apache/kylin/query/util/PushDownUtil.java b/query/src/main/java/org/apache/kylin/query/util/PushDownUtil.java index 2167fdd..3a85976 100644 --- a/query/src/main/java/org/apache/kylin/query/util/PushDownUtil.java +++ b/query/src/main/java/org/apache/kylin/query/util/PushDownUtil.java @@ -65,7 +65,7 @@ public class PushDownUtil { public static Pair<List<List<String>>, List<SelectedColumnMeta>> tryPushDownNonSelectQuery(String project, String sql, String defaultSchema, boolean isPrepare) throws Exception { PushDownExecutor executor = new PushDownExecutor(); - return executor.pushDownQuery(project, sql, defaultSchema, null, true, isPrepare); + return executor.pushDownQuery(project, sql, defaultSchema, null, false, isPrepare); } static String schemaCompletion(String inputSql, String schema) throws SqlParseException {