~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/tests/t/bool_type.test

merged with up to date trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE t1 (A BOOLEAN);
 
2
insert into t1 VALUES ("no");
 
3
insert into t1 VALUES ("false");
 
4
 
 
5
insert into t1 VALUES ("true");
 
6
insert into t1 VALUES ("yes");
 
7
 
 
8
--error ER_INVALID_BOOLEAN_VALUE
 
9
insert into t1 VALUES ("from");
 
10
 
 
11
SELECT A from t1 ORDER BY a;
 
12
 
 
13
DROP TABLE t1;