Skip to content

Commit faa95b6

Browse files
committed
Added support of raw result set to DataQueryResult
1 parent b5fc762 commit faa95b6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

table/src/main/java/tech/ydb/table/query/DataQueryResult.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ public ResultSetReader getResultSet(int index) {
3535
return ProtoValueReaders.forResultSet(resultSets.get(index));
3636
}
3737

38+
public ValueProtos.ResultSet getRawResultSet(int index) {
39+
return resultSets.get(index);
40+
}
41+
3842
public boolean isTruncated(int index) {
3943
return resultSets.get(index).getTruncated();
4044
}

0 commit comments

Comments
 (0)