152
152
set @c = repeat(' ', 256);
153
153
set @q = repeat('q', 256);
154
154
insert into t1 values(@c, @c, @c);
162
159
insert into t1 values(@q, NULL, NULL);
163
160
ERROR 22001: Data too long for column 'c_char' at row 1
164
161
insert into t1 values(NULL, @q, NULL);