Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
785d3599
Commit
785d3599
authored
Jun 04, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
after mergemerge
parent
d8947762
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
mysql-test/r/create.result
mysql-test/r/create.result
+8
-0
mysql-test/t/create.test
mysql-test/t/create.test
+1
-3
No files found.
mysql-test/r/create.result
View file @
785d3599
...
...
@@ -563,6 +563,14 @@ select * from t2;
b
1
drop table t1,t2;
create table t1 (a int);
create table t1 select * from t1;
ERROR HY000: You can't specify target table 't1' for update in FROM clause
create table t2 union = (t1) select * from t1;
ERROR HY000: You can't specify target table 't1' for update in FROM clause
flush tables with read lock;
unlock tables;
drop table t1;
create table t1(column.name int);
ERROR 42000: Incorrect table name 'column'
create table t1(test.column.name int);
...
...
mysql-test/t/create.test
View file @
785d3599
...
...
@@ -408,12 +408,12 @@ connection user1;
select
database
(),
user
();
connection
default
;
disconnect
user1
;
use
test
;
#
# Test for Bug 856 'Naming a key "Primary" causes trouble'
#
use
test
;
--
error
1280
create
table
t1
(
a
int
,
index
`primary`
(
a
));
--
error
1280
...
...
@@ -470,8 +470,6 @@ drop table t1,t2;
# This tests two additional possible errors and a hang if
# an improper fix is present.
#
connection
default
;
use
test
;
create
table
t1
(
a
int
);
--
error
1093
create
table
t1
select
*
from
t1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment