Failed tests in the 001 suite in 1.4
(MCOL-3594)
|
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | MDB Plugin |
| Affects Version/s: | 1.4.3 |
| Fix Version/s: | 1.4.4 |
| Type: | Sub-Task | Priority: | Minor |
| Reporter: | Roman | Assignee: | Daniel Lee (Inactive) |
| Resolution: | Fixed | Votes: | 1 |
| Labels: | None | ||
| Sprint: | 2020-1, 2020-2, 2020-3, 2020-4, 2020-5, 2020-6, 2020-7 |
| Description |
|
CS previously returned an error for some queries that failed previously:
Now these queries work. We need to investigate the scope of this unexpected free feature. |
| Comments |
| Comment by David Hall (Inactive) [ 2020-02-27 ] | |||
|
In 1.2, we had
In 1.4, we have
This was changed in I commented out the error detection code in 1.2 and the query succeeded, so it appears the system has supported at least this one example of a limit in a subquery for a while. | |||
| Comment by Roman [ 2020-03-01 ] | |||
|
Does it really returns expected results? | |||
| Comment by David Hall (Inactive) [ 2020-03-05 ] | |||
|
The result set returned is incorrect. We must re-enable the error message. | |||
| Comment by David Hall (Inactive) [ 2020-04-20 ] | |||
|
I had submitted, as part of | |||
| Comment by David Hall (Inactive) [ 2020-05-07 ] | |||
|
DDL and DML for example: CREATE TABLE t1 (lid int, name char(10)) engine=columnstore; CREATE TABLE t2 ( id int, gid int, lid int, dt date) engine=columnstore; | |||
| Comment by Daniel Lee (Inactive) [ 2020-05-07 ] | |||
|
Build verified: 1.4.4-1, Jenkins-20200506 The fix is to restore the error checking and return a messages for non-support syntax Server version: 10.4.12-6-MariaDB-enterprise MariaDB Enterprise Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [mytest]> CREATE TABLE t1 (lid int, name char(10)) engine=columnstore; MariaDB [mytest]> INSERT INTO t1 (lid, name) VALUES (1, 'YES'), (2, 'NO'); MariaDB [mytest]> CREATE TABLE t2 ( id int, gid int, lid int, dt date) engine=columnstore; MariaDB [mytest]> INSERT INTO t2 (id, gid, lid, dt) VALUES MariaDB [mytest]> SELECT DISTINCT t2.gid AS lgid, MariaDB [mytest]> SELECT * FROM v1; |