~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/identifiers/t/table.test

updating to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
CREATE TABLE admin.t1 (A SERIAL);
11
11
DROP TABLE admin.t1;
12
12
 
13
 
--error ER_SYNTAX_ERROR,1064
 
13
--error ER_SYNTAX_ERROR,ER_PARSE_ERROR
14
14
CREATE TABLE .admin.t1 (A SERIAL);
15
15
 
16
16
--error ER_WRONG_DB_NAME
19
19
CREATE TABLE temporary.t1 (A SERIAL);
20
20
DROP TABLE temporary.t1;
21
21
 
22
 
--error ER_SYNTAX_ERROR,1064
 
22
--error ER_SYNTAX_ERROR,ER_PARSE_ERROR
23
23
CREATE TABLE .temporary.t1 (A SERIAL);
24
24
--error ER_WRONG_DB_NAME
25
25
CREATE TABLE `.temporary`.t1 (A SERIAL);
38
38
CREATE TABLE `#temporary` (A SERIAL);
39
39
DROP TABLE `#temporary`;
40
40
 
41
 
--error 1064
 
41
--error ER_PARSE_ERROR
42
42
CREATE TABLE #temporary (A SERIAL);
43
43
 
44
44
--error ER_WRONG_TABLE_NAME