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
92eb0acd
Commit
92eb0acd
authored
Mar 06, 2006
by
mskold@mysql.com
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
a34be87f
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 @
92eb0acd
...
...
@@ -175,7 +175,8 @@ CREATE TABLE t1
(pk1 INT NOT NULL PRIMARY KEY, b INT NOT NULL, c INT NOT NULL)
TABLESPACE ts1 STORAGE DISK
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;
ALTER TABLESPACE ts1
DROP DATAFILE 'datafile2.dat'
...
...
mysql-test/t/ndb_dd_ddl.test
View file @
92eb0acd
...
...
@@ -263,7 +263,8 @@ CREATE TABLE t1
TABLESPACE
ts1
STORAGE
DISK
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
;
...
...
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