Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -2575,8 +2575,8 @@ public void testAllAvailableTypes()
assertUpdate("DROP TABLE test_all_types");
}

@Test
public void testLocalDynamicFilteringWithSelectiveBuildSizeJoin()
@Test(timeOut = 25_000)
public void testLocalDynamicFilteringWithSelectiveBuildSideJoin()
{
// We need to prepare tables for this test. The test is required to use tables that are backed by at lest two files
Session session = Session.builder(getSession())
Expand All @@ -2597,6 +2597,7 @@ public void testLocalDynamicFilteringWithSelectiveBuildSizeJoin()

session = Session.builder(getSession())
.setSystemProperty(JOIN_DISTRIBUTION_TYPE, BROADCAST.name())
.setCatalogSessionProperty(ICEBERG_CATALOG, "dynamic_filtering_wait_timeout", "1h")
.build();

ResultWithQueryId<MaterializedResult> result = getDistributedQueryRunner().executeWithQueryId(
Expand Down