Skip to content

Commit b67b4f1

Browse files
Removing redundant tests
1 parent 1e0e36f commit b67b4f1

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

extensions/parquet/table/src/test/java/io/deephaven/parquet/table/ParquetTableReadWriteTest.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3705,21 +3705,6 @@ public void testTableLocationReading() {
37053705
nonExistentTableLocation.refresh();
37063706
nonExistentTableLocation.handleUpdate(new TrackingWritableRowSetImpl(), 0);
37073707
makeNewTableLocationAndVerifyNoMakeHandleException(nonExistentTableLocation::handleUpdate);
3708-
{
3709-
// To test the following make a new temporary table location
3710-
final File tempDest = new File(rootFile, "testLocation.parquet");
3711-
final Table table = TableTools.emptyTable(5).update("A=(int)i", "B=(long)i", "C=(double)i");
3712-
writeTable(table, tempDest.getPath());
3713-
3714-
final ParquetTableLocationKey tableLocationKey =
3715-
new ParquetTableLocationKey(tempDest.toURI(), 0, null, ParquetInstructions.EMPTY);
3716-
final ParquetTableLocation tableLocation =
3717-
new ParquetTableLocation(StandaloneTableKey.getInstance(), tableLocationKey, EMPTY);
3718-
3719-
// Test this operation works without throwing an exception
3720-
nonExistentTableLocation.handleUpdate(tableLocation);
3721-
tempDest.delete();
3722-
}
37233708

37243709
// Verify that we can get a column location for a non-existent column
37253710
final ColumnLocation nonExistentColumnLocation = nonExistentTableLocation.getColumnLocation("A");

0 commit comments

Comments
 (0)