Skip to content

Commit b1ab1e4

Browse files
committed
Unblock TestPrestoNativeHiveExternalTableTpchQueriesParquet
#23908
1 parent afccfed commit b1ab1e4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

presto-native-execution/src/test/java/com/facebook/presto/nativeworker/AbstractTestNativeHiveExternalTableTpchQueries.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
import static com.facebook.presto.nativeworker.PrestoNativeQueryRunnerUtils.createExternalTable;
4242
import static com.facebook.presto.nativeworker.SymlinkManifestGeneratorUtils.cleanupSymlinkData;
4343
import static com.facebook.presto.tpch.TpchMetadata.getPrestoType;
44-
import static java.lang.String.format;
4544

4645
public abstract class AbstractTestNativeHiveExternalTableTpchQueries
4746
extends AbstractTestNativeTpchQueries
@@ -114,7 +113,9 @@ public void tearDown()
114113
for (String tableName : TPCH_TABLES) {
115114
dropTableIfExists(javaQueryRunner, HIVE, TPCH, tableName);
116115
}
117-
assertUpdate(format("DROP SCHEMA IF EXISTS %s.%s", HIVE, TPCH));
116+
117+
// https://github.com/prestodb/presto/issues/23908
118+
// assertUpdate(format("DROP SCHEMA IF EXISTS %s.%s", HIVE, TPCH));
118119

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

0 commit comments

Comments
 (0)