Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
10.4(EOL), 10.5, 10.6, 10.7(EOL), 10.8(EOL), 10.9(EOL), 10.10(EOL), 10.11
-
None
Description
Test:
SET SESSION debug_dbug="+d,Item_basic_value"; |
CREATE TABLE t1 (a INT); |
INSERT INTO t1 VALUES (1),(2),(3); |
create view v1 as SELECT * FROM t1 WHERE a BETWEEN -0000000000000001 AND -1; |
select * from v1; |
drop view v11; |
drop table t1; |
Expected result:
a
|
Warnings:
|
Note 1105 bin_eq=1 a=(bigint)-1 b=(int)-1 |
Actual result:
a
|
Warnings:
|
Note 1105 bin_eq=1 a=(int)-1 b=(int)-1 |
Attachments
Issue Links
- is part of
-
MDEV-27691 make working view-protocol
- Open
- relates to
-
MDEV-28651 quote(NULL) returns incorrect result in view ('NU' instead of 'NULL')
- Closed