Skip to content

Commit

Permalink
HIVE-23820: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ashish-kumar-sharma committed Apr 6, 2021
1 parent ec7bf97 commit 7b8c529
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3504,7 +3504,7 @@ public Table get_table_core(
final String name,
final String writeIdList)
throws MetaException, NoSuchObjectException {
return get_table_core(catName, dbname, name, writeIdList, false, null);
return get_table_core(catName, dbname, name, writeIdList, false, null, -1);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,12 @@ public Table getTable(String catName, String dbName, String tableName, String wr
return objectStore.getTable(catName, dbName, tableName, writeIdList);
}

@Override
public Table getTable(String catalogName, String dbName, String tableName, String writeIdList, long tableId)
throws MetaException {
return objectStore.getTable(catalogName, dbName, tableName, writeIdList, tableId);
}

@Override
public boolean addPartition(Partition part)
throws InvalidObjectException, MetaException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,12 @@ public Table getTable(String catalogName, String dbName, String tableName,
return null;
}

@Override
public Table getTable(String catalogName, String dbName, String tableName, String writeIdList, long tableId)
throws MetaException {
return null;
}

@Override
public boolean addPartition(Partition part) throws InvalidObjectException, MetaException {

Expand Down

0 comments on commit 7b8c529

Please sign in to comment.