~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/insert.result

  • Committer: Monty Taylor
  • Date: 2010-10-12 20:20:44 UTC
  • mto: (1842.1.3 build) (1843.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1843.
  • Revision ID: mordred@inaugust.com-20101012202044-yfrmnmkznvkqfxe4
Added support for valgrind suppressions.
Run strip-valgrind as part of make valgrind.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
insert into t1 values (default,default,default,default);
25
25
insert into t1 values (default,default,default,default);
26
26
insert into t1 values (4,0,"a",5);
27
 
ERROR HY000: Received an invalid timestamp value '0'.
 
27
ERROR HY000: Received an invalid value '0' for a UNIX timestamp.
28
28
insert into t1 values (default,default,default,default);
29
29
select a,t is not null,c,i from t1;
30
30
a       t is not null   c       i
82
82
select count(*) from t2;
83
83
count(*)
84
84
25500
85
 
COMMIT;
86
85
drop table t1,t2,t3;
87
86
create table t1 (a int, b int);
88
87
insert into t1 (a,b) values (a,b);