Skip to content

Commit

Permalink
Copy all TPCH tables during initialization in TestRedshiftUnload
Browse files Browse the repository at this point in the history
  • Loading branch information
mayankvadariya authored and raunaqmorarka committed Dec 31, 2024
1 parent b382e03 commit 41d08f6
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
import static io.trino.testing.TestingNames.randomNameSuffix;
import static io.trino.testing.TestingProperties.requiredNonEmptySystemProperty;
import static io.trino.testing.TestingSession.testSessionBuilder;
import static io.trino.tpch.TpchTable.NATION;
import static java.util.Locale.ENGLISH;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.TestInstance.Lifecycle.PER_CLASS;
Expand Down Expand Up @@ -68,7 +67,7 @@ protected QueryRunner createQueryRunner()
"s3.region", AWS_REGION,
"s3.aws-access-key", AWS_ACCESS_KEY,
"s3.aws-secret-key", AWS_SECRET_KEY))
.setInitialTables(List.of(NATION))
.setInitialTables(REQUIRED_TPCH_TABLES)
.build();
}

Expand Down

0 comments on commit 41d08f6

Please sign in to comment.