Skip to content

Commit

Permalink
Unblock TestPrestoNativeHiveExternalTableTpchQueriesParquet
Browse files Browse the repository at this point in the history
  • Loading branch information
arhimondr committed Oct 29, 2024
1 parent 24361bf commit 1ee3572
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
import static com.facebook.presto.nativeworker.PrestoNativeQueryRunnerUtils.createExternalTable;
import static com.facebook.presto.nativeworker.SymlinkManifestGeneratorUtils.cleanupSymlinkData;
import static com.facebook.presto.tpch.TpchMetadata.getPrestoType;
import static java.lang.String.format;

public abstract class AbstractTestNativeHiveExternalTableTpchQueries
extends AbstractTestNativeTpchQueries
Expand Down Expand Up @@ -114,7 +113,9 @@ public void tearDown()
for (String tableName : TPCH_TABLES) {
dropTableIfExists(javaQueryRunner, HIVE, TPCH, tableName);
}
assertUpdate(format("DROP SCHEMA IF EXISTS %s.%s", HIVE, TPCH));

// https://github.com/prestodb/presto/issues/23908
// assertUpdate(format("DROP SCHEMA IF EXISTS %s.%s", HIVE, TPCH));

File dataDirectory = ((DistributedQueryRunner) javaQueryRunner).getCoordinator().getDataDirectory().resolve(HIVE_DATA).toFile();
Path symlinkTableDataPath = dataDirectory.toPath().getParent().resolve(SYMLINK_FOLDER);
Expand Down

0 comments on commit 1ee3572

Please sign in to comment.