File tree 3 files changed +15
-12
lines changed
doc/dev_guide/internals/iproto
3 files changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ skinparam map {
7
7
BackgroundColor transparent
8
8
}
9
9
10
- map vclock {
11
- " replica_id1" => " LSN1 ",
12
- " replica_id2" => " LSN2 ",
13
- " ..." => " ... "
10
+ map "**vclock**" as vclock {
11
+ replica_id1 => LSN1
12
+ replica_id2 => LSN2
13
+ ... => ...
14
14
}
15
15
16
16
@enduml
Original file line number Diff line number Diff line change 4
4
Keys used in requests and responses
5
5
===================================
6
6
7
- This section describes ``iproto `` keys contained in iproto requests and responses.
7
+ This section describes ``iproto `` keys contained in requests and responses.
8
8
The keys are Tarantool constants that are either defined or mentioned in the
9
9
`iproto_constants.h file <https://github.com/tarantool/tarantool/blob/master/src/box/iproto_constants.h >`_.
10
10
@@ -706,7 +706,7 @@ IPROTO_METADATA
706
706
707
707
Code: 0x32.
708
708
709
- Used with SQL within IPROTO_EXECUTE.
709
+ Used with SQL within :ref: ` IPROTO_EXECUTE < box_protocol-execute >` .
710
710
711
711
The key contains an array of column maps, with each column map containing
712
712
at least IPROTO_FIELD_NAME (0x00) and MP_STR, and IPROTO_FIELD_TYPE (0x01) and MP_STR.
@@ -723,7 +723,10 @@ IPROTO_SQL_BIND
723
723
724
724
Code: 0x41.
725
725
726
- IPROTO_SQL_BIND is an array that can contain values of any type, including MP_MAP.
726
+ Used with SQL within :ref: `IPROTO_EXECUTE <box_protocol-execute >`.
727
+
728
+ IPROTO_SQL_BIND is an array of parameter values to match ? placeholders or :name placeholders.
729
+ It can contain values of any type, including MP_MAP.
727
730
728
731
* Values that are not MP_MAP replace the ``? `` placeholders in the request.
729
732
You can’t perform that action at this time.
0 commit comments