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
7b7d95f7
Commit
7b7d95f7
authored
Mar 06, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added test for Bug#17888 DD: ADD INDEX causes error 756 'Index on disk column is not supported
parent
a12ef64b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
mysql-test/r/ndb_dd_ddl.result
mysql-test/r/ndb_dd_ddl.result
+2
-1
mysql-test/t/ndb_dd_ddl.test
mysql-test/t/ndb_dd_ddl.test
+2
-1
No files found.
mysql-test/r/ndb_dd_ddl.result
View file @
7b7d95f7
...
@@ -175,7 +175,8 @@ CREATE TABLE t1
...
@@ -175,7 +175,8 @@ CREATE TABLE t1
(pk1 INT NOT NULL PRIMARY KEY, b INT NOT NULL, c INT NOT NULL)
(pk1 INT NOT NULL PRIMARY KEY, b INT NOT NULL, c INT NOT NULL)
TABLESPACE ts1 STORAGE DISK
TABLESPACE ts1 STORAGE DISK
ENGINE NDB;
ENGINE NDB;
CREATE INDEX c on t1(b, c);
CREATE INDEX b_i on t1(b);
CREATE INDEX bc_i on t1(b, c);
DROP TABLE t1;
DROP TABLE t1;
ALTER TABLESPACE ts1
ALTER TABLESPACE ts1
DROP DATAFILE 'datafile2.dat'
DROP DATAFILE 'datafile2.dat'
...
...
mysql-test/t/ndb_dd_ddl.test
View file @
7b7d95f7
...
@@ -263,7 +263,8 @@ CREATE TABLE t1
...
@@ -263,7 +263,8 @@ CREATE TABLE t1
TABLESPACE
ts1
STORAGE
DISK
TABLESPACE
ts1
STORAGE
DISK
ENGINE
NDB
;
ENGINE
NDB
;
CREATE
INDEX
c
on
t1
(
b
,
c
);
CREATE
INDEX
b_i
on
t1
(
b
);
CREATE
INDEX
bc_i
on
t1
(
b
,
c
);
DROP
TABLE
t1
;
DROP
TABLE
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