~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/tests/t/basic.test

  • Committer: Brian Aker
  • Date: 2010-11-08 18:54:26 UTC
  • mto: (1921.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1916.
  • Revision ID: brian@tangent.org-20101108185426-fymkf2xnelupf11x
Rename lock methods to be style + well make sense.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1472
1472
# Bug #31473: does not work with NULL value in datetime field
1473
1473
#
1474
1474
create temporary table t1(a datetime not null) engine=csv;
1475
 
--error 1364
 
1475
--error ER_NO_DEFAULT_FOR_FIELD
1476
1476
insert into t1 values();
1477
1477
select * from t1;
1478
1478
drop table t1;
1479
1479
create temporary table t1(a varchar(32) not null) engine=csv;
1480
 
--error 1364
 
1480
--error ER_NO_DEFAULT_FOR_FIELD
1481
1481
insert into t1 values();
1482
1482
select * from t1;
1483
1483
drop table t1;
1484
1484
create temporary table t1(a int not null) engine=csv;
1485
 
--error 1364
 
1485
--error ER_NO_DEFAULT_FOR_FIELD
1486
1486
insert into t1 values();
1487
1487
select * from t1;
1488
1488
drop table t1;
1489
1489
create temporary table t1(a blob not null) engine=csv;
1490
 
--error 1364
 
1490
--error ER_NO_DEFAULT_FOR_FIELD
1491
1491
insert into t1 values();
1492
1492
select * from t1;
1493
1493
drop table t1;