[MDEV-3628] LP:724942 - Wrong result with views and ranges in maria-5.3 Created: 2011-02-25 Updated: 2015-02-02 Resolved: 2012-10-04 |
|
| Status: | Closed |
| Project: | MariaDB Server |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Type: | Bug | Priority: | Critical |
| Reporter: | Philip Stoev (Inactive) | Assignee: | Igor Babaev |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | Launchpad | ||
| Attachments: |
|
| Description |
|
Views and ranges are altogether broken in maria-5.3. Not repeatable with maria-5.1, 5.2 , mysql-5.1 and 5.5. Test case: CREATE TABLE t1 ( f1 varchar(10), KEY (f1)) ; CREATE ALGORITHM=MERGE VIEW v1 AS SELECT * FROM t1; --let $query = SELECT * FROM v1 WHERE f1 > 'i' OR f1 AND f1 IN ( 'VV' ) --eval $query returns a column of VV VV VV , while such values are nowhere to be found in the underlying table. EXPLAIN EXTENDED reports: select 'VV' AS `f1` from `test`.`t1` where (('VV' > 'i') or ((`test`.`t1`.`f1` = 'VV') and 'VV')) which means the VV has been propagated all the way to the select list explain: id select_type table type possible_keys key key_len ref rows filtered Extra bzr version-info: revision-id: <email address hidden> |
| Comments |
| Comment by Igor Babaev [ 2011-03-01 ] |
|
Re: Wrong result with views and ranges in maria-5.3 |
| Comment by Rasmus Johansson (Inactive) [ 2011-12-13 ] |
|
Launchpad bug id: 724942 |