~stewart/drizzle/remove-unused-row-type-in-table-message

« back to all changes in this revision

Viewing changes to tests/r/type_varbinary.result

  • Committer: Brian Aker
  • Date: 2010-06-22 19:48:34 UTC
  • Revision ID: brian@gaz-20100622194834-xrx8ujqxj22m60kq
Merge in changes to call error on bad data input.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
create table t1 (c char(2), vc varchar(2));
82
82
insert into t1 values(0x4120, 0x4120);
83
83
insert into t1 values(0x412020, 0x412020);
84
 
Warnings:
85
 
Note    1265    Data truncated for column 'c' at row 1
86
 
Note    1265    Data truncated for column 'vc' at row 1
 
84
ERROR 22001: Data too long for column 'c' at row 1
87
85
drop table t1;
88
86
create table t1 (b varbinary(2), vb varbinary(2));
89
87
insert into t1 values(0x4120, 0x4120);