~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/warnings.result

  • Committer: Brian Aker
  • Date: 2010-03-27 04:12:14 UTC
  • mfrom: (1395.1.18 build)
  • Revision ID: brian@gaz-20100327041214-2pm5eay51312xjvq
Merge (fixes known issues in ALTER TABLE not resetting correctly DFE).

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
SET SQL_WARNINGS=1;
3
3
create table t1 (a int);
4
4
create table t1 (a int);
5
 
ERROR 42S01: Table 't1' already exists
 
5
ERROR 42S01: Table 'test.t1' already exists
6
6
show count(*) errors;
7
7
@@session.error_count
8
8
1
9
9
show errors;
10
10
Level   Code    Message
11
 
Error   1050    Table 't1' already exists
 
11
Error   1050    Table 'test.t1' already exists
12
12
show warnings;
13
13
Level   Code    Message
14
 
Error   1050    Table 't1' already exists
 
14
Error   1050    Table 'test.t1' already exists
15
15
create table t (i);
16
16
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your Drizzle server version for the right syntax to use near ')' at line 1
17
17
show count(*) errors;