Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions datafusion/core/tests/tpcds_planning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ async fn tpcds_logical_q3() -> Result<()> {
create_logical_plan(3).await
}

#[ignore] // thread 'q4' has overflowed its stack
#[tokio::test]
async fn tpcds_logical_q4() -> Result<()> {
create_logical_plan(4).await
Expand Down Expand Up @@ -179,7 +178,6 @@ async fn tpcds_logical_q30() -> Result<()> {
create_logical_plan(30).await
}

#[ignore] // thread 'q31' has overflowed its stack
#[tokio::test]
async fn tpcds_logical_q31() -> Result<()> {
create_logical_plan(31).await
Expand Down Expand Up @@ -345,7 +343,7 @@ async fn tpcds_logical_q63() -> Result<()> {
create_logical_plan(63).await
}

#[ignore] // thread 'q64' has overflowed its stack
#[ignore] // thread 'q64' has overflowed its stack]
#[tokio::test]
async fn tpcds_logical_q64() -> Result<()> {
create_logical_plan(64).await
Expand Down Expand Up @@ -541,7 +539,6 @@ async fn tpcds_physical_q3() -> Result<()> {
create_physical_plan(3).await
}

#[ignore] // thread 'q4' has overflowed its stack
#[tokio::test]
async fn tpcds_physical_q4() -> Result<()> {
create_physical_plan(4).await
Expand Down Expand Up @@ -683,7 +680,6 @@ async fn tpcds_physical_q30() -> Result<()> {
create_physical_plan(30).await
}

#[ignore] // thread 'q31' has overflowed its stack
#[tokio::test]
async fn tpcds_physical_q31() -> Result<()> {
create_physical_plan(31).await
Expand Down
Loading