diff options
author | va-kuznecov <va-kuznecov@ydb.tech> | 2023-06-23 22:40:56 +0300 |
---|---|---|
committer | va-kuznecov <va-kuznecov@ydb.tech> | 2023-06-23 22:40:56 +0300 |
commit | 234fdc45c2d3c6de987f600acc75563093420730 (patch) | |
tree | 05d016416956bc1dff733887ec0d3f5ded05d17c | |
parent | ff830e2d9c86bad562f37efa644439f178b2ef58 (diff) | |
download | ydb-234fdc45c2d3c6de987f600acc75563093420730.tar.gz |
Change "ydb_table.proto"
-rw-r--r-- | ydb/public/api/protos/ydb_table.proto | 5 |
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; } |