[MCOL-917] Issue with "IDB-1002 incompatible column type specified for join condition" error Created: 2017-09-13 Updated: 2017-09-13 Resolved: 2017-09-13 |
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | ExeMgr |
| Affects Version/s: | 1.1.0 |
| Fix Version/s: | Icebox |
| Type: | Bug | Priority: | Major |
| Reporter: | Daniel Lee (Inactive) | Assignee: | Unassigned |
| Resolution: | Duplicate | Votes: | 0 |
| Labels: | None | ||
| Issue Links: |
|
||||||||
| Description |
|
Build tested: 1.1.0-1 Columnstore returns an error while MariaDB returned results. How to reproduce: In InnoDB (InnoDB engine in 1.1.0-1): create table t1 (cidx int, cchar8 char(8), cint int) engine innodb; MariaDB [d2]> select * from t1, t2 where t1.cidx = t2.cidx and t1.cchar8 = t2.cint;
-----
----- insert two more rows with characters for the cchar8 column: insert into t1 values (3,'hello',3); MariaDB [d2]> select * from t1, t2 where t1.cidx = t2.cidx and t1.cchar8 = t2.cint;
-----
----- MariaDB [d2]> show warnings;
--------
--------
The same test in columnstore MariaDB [d1]> select * from t1, t2 where t1.cidx = t2.cidx and t1.cchar8 = t2.cint; |
| Comments |
| Comment by David Thompson (Inactive) [ 2017-09-13 ] |
|
Tracking in |