~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/type_enum.test

enable subselect_not, subselect_no_mat and variables tests, some other misc clean up on other tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
204
204
#
205
205
 
206
206
CREATE TABLE t1(a enum('a','b','c','d'));
207
 
# NEEDS INVESTIGATION
208
 
--error 1265 
 
207
--error 1265  Data truncated for column 'a' at row 3
209
208
INSERT INTO t1 VALUES (4),(1),(0),(3);
 
209
INSERT INTO t1 VALUES (4),(1),(2),(3);
210
210
 
211
211
SELECT a FROM t1;
212
212