~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/snowman.test

  • Committer: Monty Taylor
  • Date: 2008-09-16 00:00:48 UTC
  • mto: This revision was merged to the branch mainline in revision 391.
  • Revision ID: monty@inaugust.com-20080916000048-3rvrv3gv9l0ad3gs
Fixed copyright headers in drizzled/

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Test Snowman Unicode character for creation
2
 
# of tables and databases.
3
 
 
4
 
# Test without backticks
5
 
CREATE DATABASE ☃;
6
 
 
7
 
DROP DATABASE ☃;
8
 
 
9
 
# Now with backticks
10
 
CREATE DATABASE `☃`;
11
 
 
12
 
DROP DATABASE `☃`;
13
 
 
14
 
# Now try table names
15
 
USE test;
16
 
 
17
 
# Test table creation without backticks
18
 
# And various operations on the table
19
 
CREATE TABLE ☃ (a INT NOT NULL);
20
 
 
21
 
INSERT INTO ☃ VALUES(1);
22
 
INSERT INTO ☃ VALUES(2);
23
 
 
24
 
SELECT a FROM ☃;
25
 
 
26
 
DELETE FROM ☃ WHERE a = 1;
27
 
 
28
 
UPDATE ☃ SET a = 3 WHERE a = 2;
29
 
 
30
 
TRUNCATE ☃;
31
 
 
32
 
RENAME TABLE ☃ TO t1;
33
 
CREATE DATABASE ☃;
34
 
DROP DATABASE ☃;
35
 
CREATE DATABASE `☃`;
36
 
DROP DATABASE `☃`;
37
 
 
38
 
DROP TABLE t1;