Skip to content

Commit

Permalink
modify logic to resolve test case failure
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshatJawne committed Jun 28, 2024
1 parent e8f5175 commit 166f37b
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,8 @@ public Promise<JsPartitionedTable> refetch() {
descriptor = PartitionedTableDescriptor.deserializeBinary(w.getDataAsU8());

return w.getExportedObjects()[0].fetch();
}).then(result -> connection.newState((c, state, metadata) -> {
baseTable = (JsTable) result;
}, "get base table")
.refetch(this, connection.metadata())
.then(state -> Promise.resolve(new JsTable(connection, state)))).then(result -> {
}).then(result -> {
baseTable = (JsTable) result;
keyColumnTypes = new ArrayList<>();
InitialTableDefinition tableDefinition = WebBarrageUtils.readTableDefinition(
WebBarrageUtils.readSchemaMessage(descriptor.getConstituentDefinitionSchema_asU8()));
Expand Down

0 comments on commit 166f37b

Please sign in to comment.