Skip to content

Commit 7f3234c

Browse files
committed
Minor fixes
1 parent ba284f0 commit 7f3234c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

doc/reference/reference_sql/sql-features.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ E011, Numeric data types
4949
- DECIMAL and NUMERIC data types
5050
- ``CREATE TABLE td (s1 NUMERIC PRIMARY KEY);``
5151
- Fail, NUMERIC data types are not supported,
52-
and a number containing post-decimal digits will be
53-
treated as approximate numeric.
52+
although the DECIMAL data type is supported.
5453
* - E011-04
5554
- Arithmetic operators
5655
- ``SELECT 10+1, 9-2, 8*3, 7/2 FROM t;``

doc/reference/reference_sql/sql_user_guide.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ Most of the SQL data types correspond to
649649
:ref:`Tarantool/NoSQL types <details_about_index_field_types>` with the same name.
650650
In Tarantool versions before 2.10-beta2,
651651
There were also some Tarantool/NoSQL data types which had no corresponding SQL data types.
652-
In those versions, if Tarantool/SQL reads a Tarantool/NoSQL value which has a type which has no SQL equivalent,
652+
In those versions, if Tarantool/SQL reads a Tarantool/NoSQL value of a type that has no SQL equivalent,
653653
Tarantool/SQL could treat it as NULL or INTEGER or VARBINARY.
654654
For example, ``SELECT "flags" FROM "_vspace";`` would return a column whose type is ``'map'``.
655655
Such columns can only be manipulated in SQL by
@@ -849,7 +849,7 @@ The precedence of dyadic operators is:
849849
To ensure a desired precedence, use () parentheses.
850850

851851
********************************************************************************
852-
Special Situations
852+
Special situations
853853
********************************************************************************
854854

855855
If one of the operands has data type DOUBLE, Tarantool uses floating-point arithmetic.
@@ -932,7 +932,7 @@ integer inside square brackets.
932932
See also: :ref:`subquery <sql_subquery>`.
933933

934934
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
935-
Comparing and Ordering
935+
Comparing and ordering
936936
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
937937

938938
There are rules for determining whether value-1 is "less than", "equal to", or "greater than" value-2.

0 commit comments

Comments
 (0)