SQL features
In this section we will go through SQL:2016’s “Feature taxonomy and definition for mandatory features”.
For each feature in that list, we will come up with a simple example SQL statement. If Tarantool appears to handle the example, we will mark it “Okay”, else we will mark it “Fail”. Since this is rough and arbitrary, we believe that tests which are unfairly marked “Okay” will probably be balanced by tests which are unfairly marked “Fail”.
Feature ID | Feature | Example | Test |
---|---|---|---|
E011 | Numeric data types | ||
E011-01 | INTEGER and SMALLINT | create table t (s1 int primary key); |
Okay. |
E011-02 | REAL, DOUBLE PRECISION, and FLOAT data types | create table tr (s1 float primary key); |
Okay. Note: Floating point SQL types are not planned to be compatible between 2.1 and 2.2 releases. The reason is that in 2.1 we set ‘number’ format for columns of these types, but will restrict it to ‘float32’ and ‘float64’ in 2.2. The format change requires data migration and cannot be done automatically, because in 2.1 we have no information to distinguish ‘number’ columns (created from Lua) from FLOAT/DOUBLE/REAL ones (created from SQL). |
E011-03 | DECIMAL and NUMERIC data types | create table td (s1 numeric primary key); |
Fail, DECIMAL and NUMERIC data types are not supported and a number containing post-decimal digits will be treated as approximate numeric. |
E011-04 | Arithmetic operators | select 10+1,9-2,8*3,7/2 from t; |
Okay. |
E011-05 | Numeric comparisons | select * from t where 1 < 2; |
Okay. |
E011-06 | Implicit casting among the numeric data types | select * from t where s1 = 1.00; |
Okay, but only because Tarantool doesn’t distinguish between numeric data types. |
E021 | Character string types | ||
E021-01 | Character data type (including all its spellings) | create table t44 (s1 char primary key); |
Fail, CHAR is not supported. This type of Fail will only be counted once. |
E021-02 | CHARACTER VARYING data type (including all its spellings) | create table t45 (s1 varchar primary key); |
Fail, only the spelling VARCHAR is allowed. Note: VARCHAR(N) does not check the string length. |
E021-03 | Character literals | insert into t45 values (''); |
Okay, and the bad practice of accepting ““‘s for character literals is avoided. |
E021-04 | CHARACTER_LENGTH function | select character_length(s1) from t; |
Fail. There is no such function. There is a function LENGTH(), which is okay. |
E021-05 | OCTET_LENGTH | select octet_length(s1) from t; |
Fail. There is no such function. |
E021-06 | SUBSTRING function. | select substring(s1 from 1 for 1) from t; |
Fail. There is no such function. There is a function SUBSTR(x,n,n) which is okay. |
E021-07 | Character concatenation | select 'a' || 'b' from t; |
Okay. |
E021-08 | UPPER and LOWER functions | select upper('a'),lower('B') from t; |
Okay. SUBSTR(x,n,n) which is okay. |
E021-09 | TRIM function | select trim('a ') from t; |
Okay. |
E021-10 | Implicit casting among the fixed-length and variable-length character string types | select * from tm where char_column > varchar_column; |
Fail, there is no fixed-length character string type. |
E021-11 | POSITION function | select position(x in y) from z; |
Fail. Tarantool’s function uses ‘,’ rather than ‘in’ |
E021-12 | Character comparison | select * from t where s1 > 'a'; |
Okay. We should note here that comparisons use a binary collation by default, but it is easy to specify unicode or unicode_ci collations, or create new collations. |
E031 | Identifiers | create table rank (ceil int primary key); |
Fail. Tarantool’s list of reserved words differs from the standard’s list of reserved words. |
E031-01 | Delimited Identifiers | create table "t47" (s1 int primary key); |
Okay. And enclosing identifiers inside double quotes means they won’t be converted to upper case or lower case, this is behavior that some other DBMSs sadly lack. |
E031-02 | Lower case identifiers | create table t48 (s1 int primary key); |
Okay. |
E031-03 | Trailing underscore | create table t49_ (s1 int primary key); |
Okay. |
E051 | Basic query specification | ||
E051-01 | SELECT DISTINCT | select distinct s1 from t; |
Okay. |
E051-02 | GROUP BY clause | select distinct s1 from t group by s1; |
Okay. |
E051-04 | GROUP BY can contain columns not in select list | select s1 from t group by lower(s1); |
Okay. |
E051-05 | Select list items can be renamed | select s1 as K from t order by K; |
Okay. |
E051-06 | HAVING clause | select count(*) from t having count(*) > 0; |
Okay. GROUP BY is not mandatory before HAVING. |
E051-07 | Qualified * in select list | select t.* from t; |
Okay. |
E051-08 | Correlation names in the FROM clause | select * from t as K; |
Okay. |
E051-09 | Rename columns in the FROM clause | select * from t as x(q,c); |
Fail. |
E061 | Basic predicates and search conditions | ||
E061-01 | Comparison predicate | select * from t where 0 = 0; |
Okay. |
E061-02 | BETWEEN predicate | select * from t where ' ' between '' and ' '; |
Okay. |
E061-03 | IN predicate with list of values | select * from t where s1 in ('a',upper('a')); |
Okay. |
E061-04 | LIKE predicate | select * from t where s1 like '_'; |
Okay. |
E061-05 | LIKE predicate: ESCAPE clause | VALUES ('abc_' LIKE 'abcX_' ESCAPE 'X'); |
Okay. |
E061-06 | NULL predicate | select * from t where s1 is not null; |
Okay. |
E061-07 | Quantified comparison predicate | select * from t where s1 = any (select s1 from t); |
Fail. Syntax error. |
E061-08 | EXISTS predicate | select * from t where not exists (select * from t); |
Okay. |
E061-09 | Subqueries in comparison predicate | select * from t where s1 > (select s1 from t); |
Okay. |
E061-11 | Subqueries in IN predicate | select * from t where s1 in (select s1 from t); |
Okay. |
E061-12 | Subqueries in quantified comparison predicate | select * from t where s1 >= all (select s1 from t); |
Fail. Syntax error. |
E061-13 | Correlated subqueries | select * from t where s1 = (select s1 from t2 where
t2.s2 = t.s1); |
Okay. |
E061-14 | Search condition | select * from t where 0 <> 0 or 'a' < 'b' and s1 is
null; |
Okay. |
E071 | Basic query expressions | ||
E071-01 | UNION DISTINCT table operator | select * from t union distinct select * from t; |
Fail. However, “select * from t union select * from t;” is okay. |
E071-02 | UNION ALL table operator | select * from t union all select * from t; |
Okay. |
E071-03 | EXCEPT DISTINCT table operator | select * from t except distinct select * from t; |
Fail. However,
select * from t except select * from t; is okay. |
E071-05 | Columns combined via table operators need not have exactly the same data type. | select s1 from t union select 5 from t; |
Okay, but only because Tarantool doesn’t distinguish data types very well. |
E071-06 | Table operators in subqueries | select * from t where 'a' in (select * from t union
select * from t); |
Okay. |
E081 | Basic privileges | ||
E081-01 | Select privilege at the table level | Fail. Syntax error. (Tarantool doesn’t support privileges.) | |
E081-02 | DELETE privilege | Fail. (Tarantool doesn’t support privileges.) | |
E081-03 | INSERT privilege at the table level | Fail. (Tarantool doesn’t support privileges.) | |
E081-04 | UPDATE privilege at the table level | Fail. (Tarantool doesn’t support privileges.) | |
E081-05 | UPDATE privilege at column level | Fail. (Tarantool doesn’t support privileges.) | |
E081-06 | REFERENCES privilege at the table level | Fail. (Tarantool doesn’t support privileges.) | |
E081-07 | REFERENCES privilege at column level | Fail. (Tarantool doesn’t support privileges.) | |
E081-08 | WITH GRANT OPTION | Fail. (Tarantool doesn’t support privileges.) | |
E081-09 | USAGE privilege | Fail. (Tarantool doesn’t support privileges.) | |
E081-10 | EXECUTE privilege | Fail. (Tarantool doesn’t support privileges.) | |
E091 | Set functions | ||
E091-01 | AVG | select avg(s1) from t7; |
Fail. No warning that nulls were eliminated. |
E091-02 | COUNT | select count(*) from t7 where s1 > 0; |
Okay. |
E091-03 | MAX | select max(s1) from t7 where s1 > 0; |
Okay. |
E091-04 | MIN | select min(s1) from t7 where s1 > 0; |
Okay. |
E091-05 | SUM | select sum(1) from t7 where s1 > 0; |
Okay. |
E091-06 | ALL quantifier | select sum(all s1) from t7 where s1 > 0; |
Okay. |
E091-07 | DISTINCT quantifier | select sum(distinct s1) from t7 where s1 > 0; |
Okay. |
E101 | Basic data manipulation | ||
E101-01 | INSERT statement | insert into t (s1,s2) values (1,''),(2,null),(3,55); |
Okay. |
E101-03 | Searched UPDATE statement | update t set s1 = null where s1 in (select s1 from
t2); |
Okay. |
E101-04 | Searched DELETE statement | delete from t where s1 in (select s1 from t); |
Okay. |
E111 | Single row SELECT statement | select count(*) from t; |
Okay. |
E121 | Basic cursor support | ||
E121-01 | DECLARE CURSOR | Fail. Tarantool doesn’t support cursors. | |
E121-02 | ORDER BY columns need not be in select list | select s1 from t order by s2; |
Okay. |
E121-03 | Value expressions in select list | select s1 from t7 order by -s1; |
Okay. |
E121-04 | OPEN statement | Fail. Tarantool doesn’t support cursors. | |
E121-06 | Positioned UPDATE statement | Fail. Tarantool doesn’t support cursors. | |
E121-07 | Positioned DELETE statement | Fail. Tarantool doesn’t support cursors. | |
E121-08 | CLOSE statement | Fail. Tarantool doesn’t support cursors. | |
E121-10 | FETCH statement implicit next | Fail. Tarantool doesn’t support cursors. | |
E121-17 | WITH HOLD cursors | Fail. Tarantool doesn’t support cursors. | |
E131 | Null value support (nulls in lieu of values) | select s1 from t7 where s1 is null; |
Okay. |
E141 | Basic integrity constraints | ||
E141-01 | NOT NULL constraints | create table t8 (s1 int primary key, s2 int not
null); |
Okay. |
E141-02 | UNIQUE constraints of NOT NULL columns | create table t9 (s1 int primary key , s2 int not
null unique); |
Okay. |
E141-03 | PRIMARY KEY constraints | create table t10 (s1 int primary key); |
Okay, although Tarantool shouldn’t always insist on having a primary key. |
E141-04 | Basic FOREIGN KEY constraint with the NO ACTION default for both referential delete action and referential update action. | create table t11 (s0 int primary key, s1 int
references t10); |
Okay. |
E141-06 | CHECK constraints | create table t12 (s1 int primary key, s2 int, check
(s1 = s2)); |
Okay. |
E141-07 | Column defaults | create table t13 (s1 int primary key, s2 int
default -1); |
Okay. |
E141-08 | NOT NULL inferred on primary key | create table t14 (s1 int primary key); |
Okay. We are unable to insert NULL although we don’t explicitly say the column is NOT NULL. |
E141-10 | Names in a foreign key can be specified in any order | create table t15 (s1 int, s2 int, primary key
(s1,s2));
create table t16 (s1 int primary key, s2 int, foreign
key (s2,s1) references t15 (s1,s2)); |
Okay. |
E151 | Transaction support | ||
E151-01 | COMMIT statement | commit; |
Fail. We have to say START TRANSACTION first. |
E151-02 | ROLLBACK statement | rollback; |
Okay. |
E152 | Basic SET TRANSACTION statement | ||
E152-01 | SET TRANSACTION statement ISOLATION SERIALIZABLE clause | set transaction isolation level serializable; |
Fail. Syntax error. |
E152-02 | SET TRANSACTION statement READ ONLY and READ WRITE clauses | set transaction read only; |
Fail. Syntax error. |
E153 | Updatable queries with subqueries | ||
E161 | SQL comments using leading double minus | --comment; |
Okay. |
E171 | SQLSTATE support | drop table no_such_table; |
Fail. At least, the error message doesn’t hint that SQLSTATE exists. |
E182 | Host language binding | Okay. Any of the Tarantool connectors should be able
to call box.execute() . |
|
F031 | Basic schema manipulation | ||
F031-01 | CREATE TABLE statement to create persistent base tables | create table t20 (t20_1 int not null); |
Fail. We always have to say PRIMARY KEY (we only count this flaw once). |
F031-02 | CREATE VIEW statement | create view t21 as select * from t20; |
Okay. |
F031-03 | GRANT statement | Fail. Tarantool doesn’t support privileges except via NoSQL. | |
F031-04 | ALTER TABLE statement: add column | alter table t7 add column t7_2 varchar default 'q'; |
Fail. Table alterations work but not this clause. |
F031-13 | DROP TABLE statement: RESTRICT clause | drop table t20 restrict; |
Fail. Syntax error, and RESTRICT is not assumed. |
F031-16 | DROP VIEW statement: RESTRICT clause | drop view v2 restrict; |
Fail. Syntax error, and RESTRICT is not assumed. |
F031-19 | REVOKE statement: RESTRICT clause | Fail. Tarantool does not support privileges except via NoSQL. | |
F041 | Basic joined table | ||
F041-01 | Inner join but not necessarily the INNER keyword | select a.s1 from t7 a join t7 b; |
Okay. |
F041-02 | INNER keyword | select a.s1 from t7 a inner join t7 b; |
Okay. |
F041-03 | LEFT OUTER JOIN | select t7.*,t22.* from t22 left outer join t7 on
(t22_1=s1); |
Okay. |
F041-04 | RIGHT OUTER JOIN | select t7.*,t22.* from t22 right outer join t7 on
(t22_1=s1); |
Fail. Syntax error. |
F041-05 | Outer joins can be nested | select t7.*,t22.* from t22 left outer join t7 on
(t22_1=s1) left outer join t23; . |
Okay. |
F041-07 | The inner table in a left or right outer join can also be used in an inner join | select t7.* from (t22 left outer join t7 on
(t22_1=s1)) j inner join t22 on (j.t22_4=t7.s1); |
Okay. |
F041-08 | All comparison operators are supported | select * from t where 0=1 or 0>1 or 0<1 or 0<>1; |
Okay. |
F051 Basic date and time | |||
F051-01 | DATE data type (including support of DATE literal) | create table dates (s1 date); |
Fail. Tarantool does not support DATE data type. |
F051-02 | TIME data type (including support of TIME literal) | create table times (s1 time default time '1:2:3'); |
Fail. Syntax error. |
F051-03 | TIMESTAMP data type (including support of TIMESTAMP literal) | create table timestamps (s1 timestamp); |
Fail. Syntax error. |
F051-04 | Comparison predicate on DATE, TIME and TIMESTAMP data types | select * from dates where s1 = s1; |
Fail. The data types are not supported. |
F051-05 | Explicit CAST between date-time types and character string types | select cast(s1 as varchar(10)) from dates; |
Fail. The data types are not supported. |
F051-06 | CURRENT_DATE | select current_date from t; |
Fail. Syntax error. |
F051-07 | LOCALTIME | select localtime from t; |
Fail. Syntax error. |
F051-08 | LOCALTIMESTAMP | select localtimestamp from t; |
Fail. Syntax error. |
F081 | UNION and EXCEPT in views | create view vv as select * from t7 except select *
from t15; |
Okay. |
F131 | Grouped operations | ||
F131-01 | WHERE, GROUP BY, and HAVING clauses supported in queries with grouped views | create view vv2 as select * from vv group by s1; |
Okay. |
F131-02 | Multiple tables supported in queries with grouped views | create view vv3 as select * from vv2,t30; |
Okay. |
F131-03 | Set functions supported in queries with grouped views | create view vv4 as select count(*) from vv2; |
Okay. |
F131-04 | Subqueries with GROUP BY and HAVING clauses and grouped views | create view vv5 as select count(*) from vv2 group by
s1 having count(*) > 0; |
Okay. |
F131-05 | Single row SELECT with GROUP BY and HAVING clauses and grouped views | select count(*) from vv2 group by
s1 having count(*) > 0; |
Okay. |
F181 | Multiple module support | Fail. Tarantool doesn’t have modules. | |
F201 | CAST function | select cast(s1 as int) from t; |
Okay. |
F221 | Explicit defaults | update t set s1 = default; |
Fail. Syntax error. |
F261 | CASE expression | ||
F261-01 | Simple CASE | select case when 1 = 0 then 5 else 7 end from t; |
Okay. |
F261-02 | Searched CASE | select case 1 when 0 then 5 else 7 end from t; |
Okay. |
F261-03 | NULLIF | select nullif(s1,7) from t; |
Okay. |
F261-04 | COALESCE | select coalesce(s1,7) from t; |
Okay. |
F311 | Schema definition statement | ||
F311-01 | CREATE SCHEMA | Fail. Tarantool doesn’t have schemas or databases. | |
F311-02 | CREATE TABLE for persistent base tables | Fail. Tarantool doesn’t have CREATE TABLE inside CREATE SCHEMA. | |
F311-03 | CREATE VIEW | Fail. Tarantool doesn’t have CREATE VIEW inside CREATE SCHEMA. | |
F311-04 | CREATE VIEW: WITH CHECK OPTION | Fail. Tarantool doesn’t have CREATE VIEW inside CREATE SCHEMA. | |
F311-05 | GRANT statement | Fail. Tarantool doesn’t have GRANT inside CREATE SCHEMA. | |
F471 | Scalar subquery values | select s1 from t where s1 = (select count(*) from t); |
Okay. |
F481 | Expanded NULL Predicate | select * from t where row(s1,s1) is not null; |
Fail. Syntax error. |
F812 | Basic flagging | Fail. Tarantool doesn’t support any flagging. | |
S011 | Distinct types | create type x as float; |
Fail. Tarantool doesn’t support distinct types. |
T321 | Basic SQL-invoked routines | ||
T321-01 | User-defined functions with no overloading | create function f () returns int return 5; |
Fail. Tarantool doesn’t support user-defined SQL functions. |
T321-02 | User-defined procedures with no overloading | create procedure p () begin end; |
Fail. Tarantool doesn’t support user-defined procedures. |
T321-03 | Function invocation | select f(1) from t; |
Okay. Tarantool can invoke Lua user-defined functions. |
T321-04 | CALL statement. | call p(); |
Fail. Tarantool doesn’t support user-defined procedures. |
T321-05 | RETURN statement. | create function f() returns int return 5; |
Fail. Tarantool doesn’t support user-defined functions. |
T631 | IN predicate with one list element | select * from t where 1 in (1); |
Okay. |
F021 | Basic information schema | select * from information_schema.tables; |
Fail. There is no schema with that name (not counted in the final score). |
Total number of items marked “Fail”: 68
Total number of items marked “Okay”: 78