Skip to content

Commit 4dc810c

Browse files
committed
add get methods
1 parent de4dc74 commit 4dc810c

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/main/java/com/alipay/oceanbase/rpc/mutation/result/MutationResult.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,8 @@ public Row getOperationRow() {
8787
}
8888
return new Row(rowsMap);
8989
}
90+
91+
public ObPayload getResult() {
92+
return this.result;
93+
}
9094
}

src/main/java/com/alipay/oceanbase/rpc/protocol/payload/impl/execute/ObTableSingleOpEntity.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,4 +387,8 @@ public void setRowkey(List<ObObj> rowkey) {
387387
this.rowkey = rowkey;
388388
}
389389

390+
public List<ObObj> getPropertiesValues() {
391+
return this.propertiesValues;
392+
}
393+
390394
}

0 commit comments

Comments
 (0)