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