~vkolesnikov/pbxt/pbxt-preload-test-bug

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/t/type_varchar.test

  • Committer: paul-mccullagh
  • Date: 2008-03-10 11:36:34 UTC
  • Revision ID: paul-mccullagh-417ebf175a9c8ee6e5b3777d9e2398e1fb197391
Implemented full durability

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
select binary v='a' from t1;
26
26
select binary v='a ' from t1;
27
27
insert into t1 values('a');
28
 
--error 1582
 
28
--error ER_DUP_ENTRY
29
29
alter table t1 add primary key (v);
30
30
drop table t1;
31
31
create table t1 (v varbinary(20));