We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7ad740 commit 9e04891Copy full SHA for 9e04891
benchmarks/cdk/bin/datafusion-bench.ts
@@ -152,7 +152,10 @@ function createTablesSql (sf: number): string {
152
"supplier",
153
]) {
154
// language=SQL format=false
155
- stmt += `CREATE EXTERNAL TABLE IF NOT EXISTS ${tbl} STORED AS PARQUET LOCATION 's3://datafusion-distributed-benchmarks/tpch_sf${sf}/${tbl}/';\n`
+ stmt += `
156
+ DROP TABLE IF EXISTS ${tbl};
157
+ CREATE EXTERNAL TABLE IF NOT EXISTS ${tbl} STORED AS PARQUET LOCATION 's3://datafusion-distributed-benchmarks/tpch_sf${sf}/${tbl}/';
158
+ `
159
}
160
return stmt
161
0 commit comments