Closed
Description
Tarantool version: 2.1
OS version: any
Bug description:
SQL type system of Tarantool 2.1 should be more or less consistent.
Let's do some cleanup:
- Remove DATE/TIME/DATETIME from prarser
- Remove CHAR from parser
- Remove DECIMAL/NUMERIC/NUM from parser
So, at the end of the day following types should be supported by SQL:
- TEXT/VARCHAR(N), N is ignored, represented as STRING in space format
- INTEGER/INT, represented as INTEGER in space format
- FLOAT/REAL/DOUBLE, represented as NUMBER in space format (subject to change in future)
- [biggest part of the issue] Suppoty new type BLOB, represented as BINARY in format.
There's no such a type in formats, so need to introduce new field type and patch whole
Tarantool thoroughly