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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
e4ecc367
Commit
e4ecc367
authored
Jan 12, 2006
by
jmiller@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb_dd_ddl.test:
Added requested changes to test.
parent
2158cbde
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
mysql-test/t/ndb_dd_ddl.test
mysql-test/t/ndb_dd_ddl.test
+10
-10
No files found.
mysql-test/t/ndb_dd_ddl.test
View file @
e4ecc367
...
...
@@ -21,7 +21,7 @@ INITIAL_SIZE 16M
UNDO_BUFFER_SIZE
=
1
M
ENGINE
=
NDB
;
--
error
1502
--
error
ER_CREATE_TABLESPACE_FAILED
CREATE
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile.dat'
INITIAL_SIZE
16
M
...
...
@@ -32,7 +32,7 @@ ALTER LOGFILE GROUP lg1
ADD
UNDOFILE
'undofile02.dat'
INITIAL_SIZE
4
M
ENGINE
NDB
;
--
error
1507
--
error
ER_ALTER_TABLESPACE_FAILED
ALTER
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile02.dat'
INITIAL_SIZE
4
M
ENGINE
=
NDB
;
...
...
@@ -43,20 +43,20 @@ USE LOGFILE GROUP lg1
INITIAL_SIZE 12M
ENGINE NDB
;
--
error
1502
# Bug 16158
--
error
ER_CREATE_TABLESPACE_FAILED
CREATE
TABLESPACE
ts1
ADD
DATAFILE
'datafile.dat'
USE
LOGFILE
GROUP lg1
INITIAL_SIZE 12M
ENGINE NDB
;
# Currently a bug, bug#16158
ALTER
TABLESPACE
ts1
ADD
DATAFILE
'datafile2.dat'
INITIAL_SIZE
12
M
ENGINE
=
NDB
;
--
error
1507
# Currently a bug, bug#16158
--
error
ER_ALTER_TABLESPACE_FAILED
ALTER
TABLESPACE
ts1
ADD
DATAFILE
'datafile2.dat'
INITIAL_SIZE
12
M
...
...
@@ -67,7 +67,7 @@ CREATE TABLE t1
tablespace
ts1
storage
disk
engine
ndb
;
--
error
1050
--
error
ER_TABLE_EXISTS_ERROR
CREATE
TABLE
t1
(
pk1
int
not
null
primary
key
,
b
int
not
null
,
c
int
not
null
)
tablespace
ts1
storage
disk
...
...
@@ -79,7 +79,7 @@ ALTER TABLESPACE ts1
DROP
DATAFILE
'datafile2.dat'
ENGINE
=
NDB
;
--
error
1507
--
error
ER_ALTER_TABLESPACE_FAILED
ALTER
TABLESPACE
ts1
DROP
DATAFILE
'datafile2.dat'
ENGINE
=
NDB
;
...
...
@@ -88,7 +88,7 @@ ALTER TABLESPACE ts1
DROP
DATAFILE
'datafile.dat'
ENGINE
=
NDB
;
--
error
1507
--
error
ER_ALTER_TABLESPACE_FAILED
ALTER
TABLESPACE
ts1
DROP
DATAFILE
'datafile.dat'
ENGINE
=
NDB
;
...
...
@@ -96,14 +96,14 @@ ENGINE=NDB;
DROP
TABLESPACE
ts1
ENGINE
=
NDB
;
--
error
1503
--
error
ER_DROP_TABLESPACE_FAILED
DROP
TABLESPACE
ts1
ENGINE
=
NDB
;
DROP
LOGFILE
GROUP
lg1
ENGINE
=
NDB
;
--
error
1503
--
error
ER_DROP_TABLESPACE_FAILED
DROP
LOGFILE
GROUP
lg1
ENGINE
=
NDB
;
--
echo
****
End
Duplicate
Statement
Testing
****
...
...
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