~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Lee Bieber
  • Date: 2010-12-23 23:11:00 UTC
  • mfrom: (2024.1.1 clean)
  • Revision ID: kalebral@gmail.com-20101223231100-0rqirgz7ugkl10yp
Merge Brian - session list cleanup

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,ER_PARSE_ERROR
 
13
--error ER_SYNTAX_ERROR,1064
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,ER_PARSE_ERROR
 
22
--error ER_SYNTAX_ERROR,1064
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 ER_PARSE_ERROR
 
41
--error 1064
42
42
CREATE TABLE #temporary (A SERIAL);
43
43
 
44
44
--error ER_WRONG_TABLE_NAME