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