~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/pbxt/warnings.result

  • Committer: lbieber
  • Date: 2010-09-22 13:48:54 UTC
  • mfrom: (1784.1.3 build)
  • Revision ID: lbieber@orisndriz08-20100922134854-y7mae2taqhn73vsx
Merge Paul M. - latest changes from PBXT 1.0.11-7
Merge Paul M. - fix bug 641038 - pbxt rollback not working (tables reported as non-transactional)
Merge Andrew - fix show stoppers for new drizzledump

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
set @c = repeat(' ', 256);
154
154
set @q = repeat('q', 256);
155
155
insert into t1 values(@c, @c, @c);
156
 
Warnings:
157
 
Note    1265    Data truncated for column 'c_char' at row 1
158
 
Note    1265    Data truncated for column 'c_varchar' at row 1
 
156
ERROR 22001: Data too long for column 'c_char' at row 1
159
157
show warnings;
160
158
Level   Code    Message
161
 
Note    1265    Data truncated for column 'c_char' at row 1
162
 
Note    1265    Data truncated for column 'c_varchar' at row 1
 
159
Error   1406    Data too long for column 'c_char' at row 1
 
160
Warning 1196    Some non-transactional changed tables couldn't be rolled back
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);