@@ -162,7 +162,8 @@ local object, err = crud.get(space_name, key, opts)
162
162
where:
163
163
164
164
* ` space_name ` (` string ` ) - name of the space
165
- * ` key ` (` any ` ) - primary key value
165
+ * ` key ` (` any ` ) - primary key value in version < 0.8.0 and sharding key when
166
+ DDL sharding key is used in version >= 0.8.0. See section 'Sharding key' above.
166
167
* ` opts ` :
167
168
* ` fields ` (` ?table ` ) - field names for getting only a subset of fields
168
169
* ` bucket_id ` (` ?number|cdata ` ) - bucket ID
@@ -199,7 +200,8 @@ local object, err = crud.update(space_name, key, operations, opts)
199
200
where:
200
201
201
202
* ` space_name ` (` string ` ) - name of the space
202
- * ` key ` (` any ` ) - primary key value
203
+ * ` key ` (` any ` ) - primary key value in version < 0.8.0 and sharding key when
204
+ DDL sharding key is used in version >= 0.8.0. See section 'Sharding key' above.
203
205
* ` operations ` (` table ` ) - update [ operations] ( https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_space/#box-space-update )
204
206
* ` opts ` :
205
207
* ` timeout ` (` ?number ` ) - ` vshard.call ` timeout (in seconds)
@@ -232,7 +234,8 @@ local object, err = crud.delete(space_name, key, opts)
232
234
where:
233
235
234
236
* ` space_name ` (` string ` ) - name of the space
235
- * ` key ` (` any ` ) - primary key value
237
+ * ` key ` (` any ` ) - primary key value in version < 0.8.0 and sharding key when
238
+ DDL sharding key is used in version >= 0.8.0. See section 'Sharding key' above.
236
239
* ` opts ` :
237
240
* ` timeout ` (` ?number ` ) - ` vshard.call ` timeout (in seconds)
238
241
* ` bucket_id ` (` ?number|cdata ` ) - bucket ID
0 commit comments