This is an automated email from the ASF dual-hosted git repository.
jakevin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new 1309267e7 minor: disable tpcds-q41 due to not support decorrelate
disjunction subquery. (#5369)
1309267e7 is described below
commit 1309267e713523bc5d1c23e34dcc934d6d30c22b
Author: jakevin <[email protected]>
AuthorDate: Fri Feb 24 14:19:46 2023 +0800
minor: disable tpcds-q41 due to not support decorrelate disjunction
subquery. (#5369)
---
datafusion/core/tests/tpcds_planning.rs | 3 +++
1 file changed, 3 insertions(+)
diff --git a/datafusion/core/tests/tpcds_planning.rs
b/datafusion/core/tests/tpcds_planning.rs
index fb1a6bc28..a4875d5cb 100644
--- a/datafusion/core/tests/tpcds_planning.rs
+++ b/datafusion/core/tests/tpcds_planning.rs
@@ -235,6 +235,9 @@ async fn tpcds_logical_q40() -> Result<()> {
}
#[tokio::test]
+#[ignore]
+// Optimizer rule 'scalar_subquery_to_join' failed: Optimizing disjunctions
not supported!
+// issue: https://github.com/apache/arrow-datafusion/issues/5368
async fn tpcds_logical_q41() -> Result<()> {
create_logical_plan(41).await
}