@@ -46,7 +46,7 @@ Functionality added or changed
46
46
Core
47
47
~~~~
48
48
49
- - The UUID field type is now part of the ``SCALAR `` field type
49
+ - The `` UUID `` field type is now part of the ``SCALAR `` field type
50
50
(:tarantool-issue: `6042 `).
51
51
52
52
- The ``UUID `` field type is now available in SQL. A new UUID can be generated
74
74
75
75
In ``net.box ``, a stream is an object above the connection that has the same methods
76
76
but allows executing requests sequentially. The ID is generated on the client side automatically.
77
- If a user writes their own connector and wants to use streams, they must transmit the ``stream_id `` over the iproto protocol.
77
+ If a user writes his own connector and wants to use streams, they must transmit the ``stream_id `` over the iproto protocol.
78
78
79
79
The primary purpose of streams is transactions via iproto.
80
80
As each stream can start a transaction, several transactions can be multiplexed over one connection.
@@ -187,6 +187,7 @@ Logging
187
187
188
188
require('log').cfg{level = 'verbose'}
189
189
190
+ .. _2.10.0-beta1-sql :
190
191
191
192
SQL
192
193
~~~
321
322
322
323
- **[Breaking change] ** ``fiber.wakeup() `` in Lua and
323
324
``fiber_wakeup() `` in C became NOP on the currently running fiber.
324
- Previously they allowed “ ignoring” the next yield or sleep, which
325
+ Previously they allowed ignoring the next yield or sleep, which
325
326
resulted in unexpected erroneous wake-ups. Calling these functions
326
327
right before ``fiber.create() `` in Lua or ``fiber_start() `` in C
327
328
could lead to a crash (in debug build) or undefined behaviour (in
@@ -597,27 +598,27 @@ Triggers
597
598
SQL
598
599
~~~
599
600
600
- - User-defined functions can now return a VARBINARY result to SQL
601
+ - User-defined functions can now return a `` VARBINARY `` result to SQL
601
602
(:tarantool-issue: `6024 `).
602
603
603
- - Fixed assert when a DOUBLE value greater than -1.0 and less
604
- than 0.0 is cast to INTEGER and UNSIGNED
604
+ - Fixed assert when a `` DOUBLE `` value greater than -1.0 and less
605
+ than 0.0 is cast to `` INTEGER `` and `` UNSIGNED ``
605
606
(:tarantool-issue: `6225 `).
606
607
607
- - Removed spontaneous conversion from INTEGER to DOUBLE in a field of the
608
- NUMBER type
608
+ - Removed spontaneous conversion from `` INTEGER `` to `` DOUBLE `` in a field of the
609
+ `` NUMBER `` type
609
610
(:tarantool-issue: `5335 `).
610
611
611
612
- All arithmetic operations can now accept numeric values only
612
613
(:tarantool-issue: `5756 `).
613
614
614
- - Now ``QUOTE() `` returns the argument if the argument is DOUBLE, which is the same behavior as
615
+ - Now ``QUOTE() `` returns the argument if the argument is `` DOUBLE `` , which is the same behavior as
615
616
with other numeric types.
616
- For types different from numeric, the function returns a STRING
617
+ For types different from numeric, the function returns a `` STRING ``
617
618
(:tarantool-issue: `6239 `).
618
619
619
620
- The ``TRIM() `` function now does not lose collation
620
- when executed with the keywords BOTH, LEADING, or TRAILING
621
+ when executed with the keywords `` BOTH ``, `` LEADING `` , or `` TRAILING ``
621
622
(:tarantool-issue: `6299 `).
622
623
623
624
MVCC
0 commit comments