MariaDB [test]> SELECT c0 FROM t0 WHERE ((-1782140092 << 0)) NOT IN (c0,0);
|
Empty set (0.000 sec)
|
|
MariaDB [test]> explain extended SELECT c0 FROM t0 WHERE ((-1782140092 << 0)) NOT IN (c0,0);
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------+
|
| 1 | SIMPLE | t0 | ALL | NULL | NULL | NULL | NULL | 1 | 100.00 | Using where |
|
+------+-------------+-------+------+---------------+------+---------+------+------+----------+-------------+
|
1 row in set, 1 warning (0.000 sec)
|
|
Note (Code 1003): select `test`.`t0`.`c0` AS `c0` from `test`.`t0` where <cache>(-1782140092 << 0) not in (`test`.`t0`.`c0`,0)
|
|
MariaDB [test]> alter table t0 engine=aria;
|
Query OK, 1 row affected (0.080 sec)
|
Records: 1 Duplicates: 0 Warnings: 0
|
|
MariaDB [test]> SELECT c0 FROM t0 WHERE ((-1782140092 << 0)) NOT IN (c0,0);
|
+-------------+
|
| c0 |
|
+-------------+
|
| -1782140092 |
|
+-------------+
|
1 row in set (0.001 sec)
|
|
MariaDB [test]> explain extended SELECT c0 FROM t0 WHERE ((-1782140092 << 0)) NOT IN (c0,0);
|
+------+-------------+-------+--------+---------------+------+---------+------+------+----------+-------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
|
+------+-------------+-------+--------+---------------+------+---------+------+------+----------+-------+
|
| 1 | SIMPLE | t0 | system | NULL | NULL | NULL | NULL | 1 | 100.00 | |
|
+------+-------------+-------+--------+---------------+------+---------+------+------+----------+-------+
|
1 row in set, 1 warning (0.000 sec)
|
|
Note (Code 1003): select -1782140092 AS `c0` from dual where 1
|
|