~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/default.test

Phase 1 - temporal changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
 
112
112
create table bug20691 (
113
113
  b enum('small', 'medium', 'large', 'enormous', 'ellisonego') not null,
114
 
  c time not null,
115
114
  d date not null,
116
115
  e int not null,
117
116
  g blob not null,
118
117
  h datetime not null,
119
118
  i decimal not null,
120
119
  x int);
121
 
insert into bug20691 values (3, 5, '0007-01-01', 11, 17, '0019-01-01 00:00:00', 23, 1);
 
120
insert into bug20691 values (3, '0007-01-01', 11, 17, '0019-01-01 00:00:00', 23, 1);
122
121
--error 1364
123
122
insert into bug20691 (x) values (2);
124
 
insert into bug20691 values (3, 5, '0007-01-01', 11, 17, '0019-01-01 00:00:00', 23, 3);
 
123
insert into bug20691 values (3, '0007-01-01', 11, 17, '0019-01-01 00:00:00', 23, 3);
125
124
--error 1364
126
 
insert into bug20691 values (DEFAULT, DEFAULT, DEFAULT, DEFAULT, DEFAULT, DEFAULT, DEFAULT, 4);
 
125
insert into bug20691 values (DEFAULT, DEFAULT, DEFAULT, DEFAULT, DEFAULT, DEFAULT, 4);
127
126
select * from bug20691 order by x asc;
128
127
drop table bug20691;
129
128