aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorva-kuznecov <va-kuznecov@ydb.tech>2023-06-23 22:40:56 +0300
committerva-kuznecov <va-kuznecov@ydb.tech>2023-06-23 22:40:56 +0300
commit234fdc45c2d3c6de987f600acc75563093420730 (patch)
tree05d016416956bc1dff733887ec0d3f5ded05d17c
parentff830e2d9c86bad562f37efa644439f178b2ef58 (diff)
downloadydb-234fdc45c2d3c6de987f600acc75563093420730.tar.gz
Change "ydb_table.proto"
-rw-r--r--ydb/public/api/protos/ydb_table.proto5
1 files changed, 3 insertions, 2 deletions
diff --git a/ydb/public/api/protos/ydb_table.proto b/ydb/public/api/protos/ydb_table.proto
index f807c874591..82074236f17 100644
--- a/ydb/public/api/protos/ydb_table.proto
+++ b/ydb/public/api/protos/ydb_table.proto
@@ -1061,9 +1061,10 @@ message ReadRowsRequest {
string session_id = 1;
// Path to table to read
string path = 2;
- // Keys to read
+ // Keys to read. Must be a list of structs where each stuct is a key
+ // for one requested row and should contain all key columns
TypedValue keys = 3;
- // Output columns
+ // Output columns. If empty all columns will be requested
repeated string columns = 4;
}