1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Added test case for creating index on disk stored table

This commit is contained in:
marty@linux.site
2006-01-31 20:11:43 +01:00
parent 902ec857ce
commit aef3ead4bc
2 changed files with 3 additions and 0 deletions

View File

@ -175,6 +175,7 @@ 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(c);
DROP TABLE t1;
ALTER TABLESPACE ts1
DROP DATAFILE 'datafile2.dat'

View File

@ -263,6 +263,8 @@ CREATE TABLE t1
TABLESPACE ts1 STORAGE DISK
ENGINE NDB;
CREATE INDEX c on t1(c);
DROP TABLE t1;
ALTER TABLESPACE ts1