~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/warnings.result

  • Committer: Brian Aker
  • Date: 2010-08-18 20:55:22 UTC
  • mfrom: (1711.6.3 staging)
  • Revision ID: brian@tangent.org-20100818205522-esgel82hp9kyl3l2
Merge mutex patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
Note    1051    Unknown table 'not_exists_table'
44
44
drop database if exists not_exists_db;
45
45
Warnings:
46
 
Note    1008    Can't drop schema 'not_exists_db'; schema doesn't exist
 
46
Note    1008    Can't drop database 'not_exists_db'; database doesn't exist
47
47
show count(*) warnings;
48
48
@@session.warning_count
49
49
1
56
56
1
57
57
drop table t1;
58
58
create table t1(a int, b int not null, c date, d char(5));
59
 
load data infile 'DRIZZLETEST_VARDIR/std_data_ln/warnings_loaddata.dat' into table t1 fields terminated by ',';
 
59
load data infile '../std_data_ln/warnings_loaddata.dat' into table t1 fields terminated by ',';
60
60
ERROR 22004: Column set to default value; NULL supplied to NOT NULL column 'b' at row 2
61
61
select @@warning_count;
62
62
@@warning_count