1
# Test Clef Unicode character for creation
2
# of tables and databases. This is interesting as it's > 2**16
4
# Test without backticks
17
# Test table creation without backticks
18
# And various operations on the table
19
CREATE TABLE 𝄢 (a INT NOT NULL);
21
INSERT INTO 𝄢 VALUES(1);
22
INSERT INTO 𝄢 VALUES(2);
26
DELETE FROM 𝄢 WHERE a = 1;
28
UPDATE 𝄢 SET a = 3 WHERE a = 2;