642.1.75
by Lee
enable clef and mysql_bug2397 tests |
1 |
CREATE DATABASE `𝄢`;
|
2 |
DROP DATABASE `𝄢`;
|
|
673.3.30
by Stewart Smith
add a skeleton clef test that uses the unicode clef character, which is above 2**16. this is https://bugs.launchpad.net/drizzle/+bug/310479 |
3 |
USE test;
|
642.1.75
by Lee
enable clef and mysql_bug2397 tests |
4 |
CREATE TABLE 𝄢 (a INT NOT NULL);
|
5 |
INSERT INTO 𝄢 VALUES(1);
|
|
6 |
INSERT INTO 𝄢 VALUES(2);
|
|
7 |
SELECT a FROM 𝄢;
|
|
673.3.30
by Stewart Smith
add a skeleton clef test that uses the unicode clef character, which is above 2**16. this is https://bugs.launchpad.net/drizzle/+bug/310479 |
8 |
a
|
9 |
1
|
|
10 |
2
|
|
642.1.75
by Lee
enable clef and mysql_bug2397 tests |
11 |
DELETE FROM 𝄢 WHERE a = 1;
|
12 |
UPDATE 𝄢 SET a = 3 WHERE a = 2;
|
|
13 |
TRUNCATE 𝄢;
|
|
14 |
RENAME TABLE 𝄢 TO t1;
|
|
15 |
CREATE DATABASE 𝄢;
|
|
16 |
DROP DATABASE 𝄢;
|
|
17 |
CREATE DATABASE `𝄢`;
|
|
18 |
DROP DATABASE `𝄢`;
|
|
1119.4.2
by Stewart Smith
make clef test not leave tables behind after running |
19 |
DROP TABLE t1;
|