~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/snowman.result

  • Committer: Monty Taylor
  • Date: 2008-11-16 06:29:53 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116062953-ivdltjmfe009b5fr
Moved stuff into item/

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CREATE DATABASE ☃;
2
 
DROP DATABASE ☃;
3
 
CREATE DATABASE `☃`;
4
 
DROP DATABASE `☃`;
5
 
USE test;
6
 
CREATE TABLE ☃ (a INT NOT NULL);
7
 
INSERT INTO ☃ VALUES(1);
8
 
INSERT INTO ☃ VALUES(2);
9
 
SELECT a FROM ☃;
10
 
a
11
 
1
12
 
2
13
 
DELETE FROM ☃ WHERE a = 1;
14
 
UPDATE ☃ SET a = 3 WHERE a = 2;
15
 
TRUNCATE ☃;
16
 
RENAME TABLE ☃ TO t1;
17
 
CREATE DATABASE ☃;
18
 
DROP DATABASE ☃;
19
 
CREATE DATABASE `☃`;
20
 
DROP DATABASE `☃`;
21
 
DROP TABLE t1;