Skip to content

Commit

Permalink
Update TCPDS tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Dandandan committed Mar 27, 2024
1 parent 7f4b338 commit 5a503f9
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions datafusion/core/tests/tpcds_planning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,6 @@ async fn tpcds_logical_q9() -> Result<()> {
create_logical_plan(9).await
}

#[ignore]
// Schema error: No field named 'c'.'c_customer_sk'.
// issue: https://github.com/apache/arrow-datafusion/issues/4794
#[tokio::test]
async fn tpcds_logical_q10() -> Result<()> {
create_logical_plan(10).await
Expand Down Expand Up @@ -201,9 +198,6 @@ async fn tpcds_logical_q34() -> Result<()> {
create_logical_plan(34).await
}

#[ignore]
// Schema error: No field named 'c'.'c_customer_sk'.
// issue: https://github.com/apache/arrow-datafusion/issues/4794
#[tokio::test]
async fn tpcds_logical_q35() -> Result<()> {
create_logical_plan(35).await
Expand Down Expand Up @@ -577,7 +571,7 @@ async fn tpcds_physical_q9() -> Result<()> {
create_physical_plan(9).await
}

#[ignore] // FieldNotFound
#[ignore] // Physical plan does not support logical expression Exists(<subquery>)
#[tokio::test]
async fn tpcds_physical_q10() -> Result<()> {
create_physical_plan(10).await
Expand Down Expand Up @@ -703,7 +697,7 @@ async fn tpcds_physical_q34() -> Result<()> {
create_physical_plan(34).await
}

#[ignore] // FieldNotFound
#[ignore] // Physical plan does not support logical expression Exists(<subquery>)
#[tokio::test]
async fn tpcds_physical_q35() -> Result<()> {
create_physical_plan(35).await
Expand Down Expand Up @@ -734,7 +728,7 @@ async fn tpcds_physical_q40() -> Result<()> {
create_physical_plan(40).await
}

#[ignore] // Physical plan does not support logical expression (<subquery>)
#[ignore] // Context("check_analyzed_plan", Plan("Correlated column is not allowed in predicate: (..)
#[tokio::test]
async fn tpcds_physical_q41() -> Result<()> {
create_physical_plan(41).await
Expand Down

0 comments on commit 5a503f9

Please sign in to comment.