5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-03 03:21:55 +08:00

SQOOP-1129: PostgreSQL direct test are failing on trunk

(Jarek Jarcec Cecho via Venkat Ranganathan)
This commit is contained in:
Venkat Ranganathan 2013-07-09 20:00:37 -07:00
parent b8fd602028
commit 00bc001fb9

View File

@ -240,13 +240,7 @@ private void doImportAndVerify(boolean isDirect, String [] expectedResults,
Path warehousePath = new Path(this.getWarehouseDir());
Path tablePath = new Path(warehousePath, tableName);
Path filePath;
if (isDirect) {
filePath = new Path(tablePath, "data-00000");
} else {
filePath = new Path(tablePath, "part-m-00000");
}
Path filePath = new Path(tablePath, "part-m-00000");
File tableFile = new File(tablePath.toString());
if (tableFile.exists() && tableFile.isDirectory()) {