~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/clef.test

MergeΒ Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Test Clef Unicode character for creation
 
2
# of tables and databases. This is interesting as it's > 2**16
 
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
DROP TABLE t1;