ERROR 42000: Display width out of range for column 'a' (max = 255)
28
set sql_mode='traditional';
27
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near '(256))' at line 1
29
28
create table t1 (a varchar(66000));
30
ERROR 42000: Column length too big for column 'a' (max = 65535); use BLOB or TEXT instead
31
set sql_mode=default;
29
ERROR 42000: Column length too big for column 'a' (max = 16383); use BLOB or TEXT instead
32
30
CREATE TABLE t1 (a INT);
33
31
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
34
32
a
40
38
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));