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
68ef8b07
Commit
68ef8b07
authored
Jan 11, 2006
by
jmiller@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test clean up and moving over from old clone.
parent
2f27c649
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
741 additions
and
260 deletions
+741
-260
mysql-test/r/ndb_dd_basic.result
mysql-test/r/ndb_dd_basic.result
+133
-125
mysql-test/r/ndb_dd_ddl.result
mysql-test/r/ndb_dd_ddl.result
+182
-0
mysql-test/t/ndb_dd_basic.test
mysql-test/t/ndb_dd_basic.test
+169
-135
mysql-test/t/ndb_dd_ddl.test
mysql-test/t/ndb_dd_ddl.test
+257
-0
No files found.
mysql-test/r/ndb_
basic_disk
.result
→
mysql-test/r/ndb_
dd_basic
.result
View file @
68ef8b07
This diff is collapsed.
Click to expand it.
mysql-test/r/ndb_dd_ddl.result
0 → 100644
View file @
68ef8b07
DROP TABLE IF EXISTS t1;
**** Begin Duplicate Statement Testing ****
CREATE LOGFILE GROUP lg1
ADD UNDOFILE 'undofile.dat'
INITIAL_SIZE 16M
UNDO_BUFFER_SIZE = 1M
ENGINE=NDB;
CREATE LOGFILE GROUP lg1
ADD UNDOFILE 'undofile.dat'
INITIAL_SIZE 16M
UNDO_BUFFER_SIZE = 1M
ENGINE=NDB;
ERROR HY000: Failed to create LOGFILE GROUP
ALTER LOGFILE GROUP lg1
ADD UNDOFILE 'undofile02.dat'
INITIAL_SIZE 4M ENGINE NDB;
ALTER LOGFILE GROUP lg1
ADD UNDOFILE 'undofile02.dat'
INITIAL_SIZE 4M ENGINE=NDB;
ERROR HY000: Failed to alter: CREATE UNDOFILE
CREATE TABLESPACE ts1
ADD DATAFILE 'datafile.dat'
USE LOGFILE GROUP lg1
INITIAL_SIZE 12M
ENGINE NDB;
CREATE TABLESPACE ts1
ADD DATAFILE 'datafile.dat'
USE LOGFILE GROUP lg1
INITIAL_SIZE 12M
ENGINE NDB;
ERROR HY000: Failed to create TABLESPACE
ALTER TABLESPACE ts1
ADD DATAFILE 'datafile2.dat'
INITIAL_SIZE 12M
ENGINE=NDB;
ALTER TABLESPACE ts1
ADD DATAFILE 'datafile2.dat'
INITIAL_SIZE 12M
ENGINE=NDB;
ERROR HY000: Failed to alter: CREATE DATAFILE
CREATE TABLE t1
(pk1 int not null primary key, b int not null, c int not null)
tablespace ts1 storage disk
engine ndb;
CREATE TABLE t1
(pk1 int not null primary key, b int not null, c int not null)
tablespace ts1 storage disk
engine ndb;
ERROR 42S01: Table 't1' already exists
DROP TABLE t1;
ALTER TABLESPACE ts1
DROP DATAFILE 'datafile2.dat'
ENGINE=NDB;
ALTER TABLESPACE ts1
DROP DATAFILE 'datafile2.dat'
ENGINE=NDB;
ERROR HY000: Failed to alter: NO SUCH FILE
ALTER TABLESPACE ts1
DROP DATAFILE 'datafile.dat'
ENGINE=NDB;
ALTER TABLESPACE ts1
DROP DATAFILE 'datafile.dat'
ENGINE=NDB;
ERROR HY000: Failed to alter: NO SUCH FILE
DROP TABLESPACE ts1
ENGINE=NDB;
DROP TABLESPACE ts1
ENGINE=NDB;
ERROR HY000: Failed to drop TABLESPACE
DROP LOGFILE GROUP lg1
ENGINE=NDB;
DROP LOGFILE GROUP lg1
ENGINE=NDB;
ERROR HY000: Failed to drop LOGFILE GROUP
**** End Duplicate Statement Testing ****
**** Begin Statment CaSe Testing ****
creaTE LOgfilE GrOuP lg1
adD undoFILE 'undofile.dat'
initiAL_siZE 16M
UnDo_BuFfEr_SiZe = 1M
ENGInE=NDb;
altER LOgFiLE GrOUp lg1
AdD UnDOfILe 'undofile02.dat'
INItIAl_SIzE 4M ENgINE nDB;
CrEAtE TABLEspaCE ts1
ADD DATAfilE 'datafile.dat'
UsE LoGFiLE GRoUP lg1
INITiaL_SizE 12M
ENGiNe NDb;
AlTeR tAbLeSpAcE ts1
AdD DaTaFiLe 'datafile2.dat'
InItIaL_SiZe 12M
EnGiNe=NDB;
CREATE TABLE t1
(pk1 int not null primary key, b int not null, c int not null)
TABLEspace ts1 storAGE dISk
ENGine nDb;
DROP TABLE t1;
AlteR TAblespaCE ts1
droP DATAfile 'datafile2.dat'
ENGINE=NDB;
ALter tablesPACE ts1
dROp dAtAfIlE 'datafile.dat'
ENGine=Ndb;
DrOp TaBleSpAcE ts1
engINE=ndB;
DrOp lOgFiLe GrOuP lg1
EnGiNe=nDb;
**** End Statment CaSe Testing ****
**** Begin = And No = Testing ****
CREATE LOGFILE GROUP lg1
ADD UNDOFILE 'undofile.dat'
INITIAL_SIZE=16M
UNDO_BUFFER_SIZE=1M
ENGINE=NDB;
ALTER LOGFILE GROUP lg1
ADD UNDOFILE 'undofile02.dat'
INITIAL_SIZE=4M
ENGINE=NDB;
CREATE TABLESPACE ts1
ADD DATAFILE 'datafile.dat'
USE LOGFILE GROUP lg1
INITIAL_SIZE=12M
ENGINE=NDB;
ALTER TABLESPACE ts1
ADD DATAFILE 'datafile2.dat'
INITIAL_SIZE=12M
ENGINE=NDB;
CREATE TABLE t1
(pk1 INT NOT NULL PRIMARY KEY, b INT NOT NULL, c INT NOT NULL)
TABLESPACE ts1 STORAGE DISK
ENGINE=NDB;
DROP TABLE t1;
ALTER TABLESPACE ts1
DROP DATAFILE 'datafile2.dat'
ENGINE=NDB;
ALTER TABLESPACE ts1
DROP DATAFILE 'datafile.dat'
ENGINE=NDB;
DROP TABLESPACE ts1
ENGINE=NDB;
DROP LOGFILE GROUP lg1
ENGINE=NDB;
**** End of = ****
CREATE LOGFILE GROUP lg1
ADD UNDOFILE 'undofile.dat'
INITIAL_SIZE 16M
UNDO_BUFFER_SIZE 1M
ENGINE NDB;
ALTER LOGFILE GROUP lg1
ADD UNDOFILE 'undofile02.dat'
INITIAL_SIZE 4M
ENGINE NDB;
CREATE TABLESPACE ts1
ADD DATAFILE 'datafile.dat'
USE LOGFILE GROUP lg1
INITIAL_SIZE 12M
ENGINE NDB;
ALTER TABLESPACE ts1
ADD DATAFILE 'datafile2.dat'
INITIAL_SIZE 12M
ENGINE NDB;
CREATE TABLE t1
(pk1 INT NOT NULL PRIMARY KEY, b INT NOT NULL, c INT NOT NULL)
TABLESPACE ts1 STORAGE DISK
ENGINE NDB;
DROP TABLE t1;
ALTER TABLESPACE ts1
DROP DATAFILE 'datafile2.dat'
ENGINE NDB;
ALTER TABLESPACE ts1
DROP DATAFILE 'datafile.dat'
ENGINE NDB;
DROP TABLESPACE ts1
ENGINE NDB;
DROP LOGFILE GROUP lg1
ENGINE NDB;
**** End = And No = ****
mysql-test/t/ndb_
basic_disk
.test
→
mysql-test/t/ndb_
dd_basic
.test
View file @
68ef8b07
This diff is collapsed.
Click to expand it.
mysql-test/t/ndb_dd_ddl.test
0 → 100644
View file @
68ef8b07
#########################################
# Author: JBM
# Date: 2006-01-03
# Purpose: Test the NDB engine reaction to duplicate
# Table spaces and log groups. Also to test
# Statement mixed case.
############################################
--
source
include
/
have_ndb
.
inc
--
disable_warnings
DROP
TABLE
IF
EXISTS
t1
;
--
enable_warnings
############## Duplcate Statement Testing #########
--
echo
****
Begin
Duplicate
Statement
Testing
****
CREATE
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile.dat'
INITIAL_SIZE
16
M
UNDO_BUFFER_SIZE
=
1
M
ENGINE
=
NDB
;
--
error
1502
CREATE
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile.dat'
INITIAL_SIZE
16
M
UNDO_BUFFER_SIZE
=
1
M
ENGINE
=
NDB
;
ALTER
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile02.dat'
INITIAL_SIZE
4
M
ENGINE
NDB
;
--
error
1507
ALTER
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile02.dat'
INITIAL_SIZE
4
M
ENGINE
=
NDB
;
CREATE
TABLESPACE
ts1
ADD
DATAFILE
'datafile.dat'
USE
LOGFILE
GROUP lg1
INITIAL_SIZE 12M
ENGINE NDB
;
--
error
1502
# Bug 16158
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
ALTER
TABLESPACE
ts1
ADD
DATAFILE
'datafile2.dat'
INITIAL_SIZE
12
M
ENGINE
=
NDB
;
CREATE
TABLE
t1
(
pk1
int
not
null
primary
key
,
b
int
not
null
,
c
int
not
null
)
tablespace
ts1
storage
disk
engine
ndb
;
--
error
1050
CREATE
TABLE
t1
(
pk1
int
not
null
primary
key
,
b
int
not
null
,
c
int
not
null
)
tablespace
ts1
storage
disk
engine
ndb
;
DROP
TABLE
t1
;
ALTER
TABLESPACE
ts1
DROP
DATAFILE
'datafile2.dat'
ENGINE
=
NDB
;
--
error
1507
ALTER
TABLESPACE
ts1
DROP
DATAFILE
'datafile2.dat'
ENGINE
=
NDB
;
ALTER
TABLESPACE
ts1
DROP
DATAFILE
'datafile.dat'
ENGINE
=
NDB
;
--
error
1507
ALTER
TABLESPACE
ts1
DROP
DATAFILE
'datafile.dat'
ENGINE
=
NDB
;
DROP
TABLESPACE
ts1
ENGINE
=
NDB
;
--
error
1503
DROP
TABLESPACE
ts1
ENGINE
=
NDB
;
DROP
LOGFILE
GROUP
lg1
ENGINE
=
NDB
;
--
error
1503
DROP
LOGFILE
GROUP
lg1
ENGINE
=
NDB
;
--
echo
****
End
Duplicate
Statement
Testing
****
############# End Duplicate Statments ############
--
echo
############ Begin CaSe Testing ##################
--
echo
****
Begin
Statment
CaSe
Testing
****
creaTE
LOgfilE
GrOuP
lg1
adD
undoFILE
'undofile.dat'
initiAL_siZE
16
M
UnDo_BuFfEr_SiZe
=
1
M
ENGInE
=
NDb
;
altER
LOgFiLE
GrOUp
lg1
AdD
UnDOfILe
'undofile02.dat'
INItIAl_SIzE
4
M
ENgINE
nDB
;
CrEAtE
TABLEspaCE
ts1
ADD
DATAfilE
'datafile.dat'
UsE
LoGFiLE
GRoUP lg1
INITiaL_SizE 12M
ENGiNe NDb
;
AlTeR
tAbLeSpAcE
ts1
AdD
DaTaFiLe
'datafile2.dat'
InItIaL_SiZe
12
M
EnGiNe
=
NDB
;
CREATE
TABLE
t1
(
pk1
int
not
null
primary
key
,
b
int
not
null
,
c
int
not
null
)
TABLEspace
ts1
storAGE
dISk
ENGine
nDb
;
DROP
TABLE
t1
;
AlteR
TAblespaCE
ts1
droP
DATAfile
'datafile2.dat'
ENGINE
=
NDB
;
ALter
tablesPACE
ts1
dROp
dAtAfIlE
'datafile.dat'
ENGine
=
Ndb
;
DrOp
TaBleSpAcE
ts1
engINE
=
ndB
;
DrOp
lOgFiLe
GrOuP
lg1
EnGiNe
=
nDb
;
--
echo
****
End
Statment
CaSe
Testing
****
############ End CaSe Testing ##################
--
echo
############ Begin = and no = Testing ##########
--
echo
****
Begin
=
And
No
=
Testing
****
CREATE
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile.dat'
INITIAL_SIZE
=
16
M
UNDO_BUFFER_SIZE
=
1
M
ENGINE
=
NDB
;
ALTER
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile02.dat'
INITIAL_SIZE
=
4
M
ENGINE
=
NDB
;
CREATE
TABLESPACE
ts1
ADD
DATAFILE
'datafile.dat'
USE
LOGFILE
GROUP lg1
INITIAL_SIZE=12M
ENGINE=NDB
;
ALTER
TABLESPACE
ts1
ADD
DATAFILE
'datafile2.dat'
INITIAL_SIZE
=
12
M
ENGINE
=
NDB
;
CREATE
TABLE
t1
(
pk1
INT
NOT
NULL
PRIMARY
KEY
,
b
INT
NOT
NULL
,
c
INT
NOT
NULL
)
TABLESPACE
ts1
STORAGE
DISK
ENGINE
=
NDB
;
DROP
TABLE
t1
;
ALTER
TABLESPACE
ts1
DROP
DATAFILE
'datafile2.dat'
ENGINE
=
NDB
;
ALTER
TABLESPACE
ts1
DROP
DATAFILE
'datafile.dat'
ENGINE
=
NDB
;
DROP
TABLESPACE
ts1
ENGINE
=
NDB
;
DROP
LOGFILE
GROUP
lg1
ENGINE
=
NDB
;
--
echo
--
echo
****
End
of
=
****
--
echo
CREATE
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile.dat'
INITIAL_SIZE
16
M
UNDO_BUFFER_SIZE
1
M
ENGINE
NDB
;
ALTER
LOGFILE
GROUP
lg1
ADD
UNDOFILE
'undofile02.dat'
INITIAL_SIZE
4
M
ENGINE
NDB
;
CREATE
TABLESPACE
ts1
ADD
DATAFILE
'datafile.dat'
USE
LOGFILE
GROUP lg1
INITIAL_SIZE 12M
ENGINE NDB
;
ALTER
TABLESPACE
ts1
ADD
DATAFILE
'datafile2.dat'
INITIAL_SIZE
12
M
ENGINE
NDB
;
CREATE
TABLE
t1
(
pk1
INT
NOT
NULL
PRIMARY
KEY
,
b
INT
NOT
NULL
,
c
INT
NOT
NULL
)
TABLESPACE
ts1
STORAGE
DISK
ENGINE
NDB
;
DROP
TABLE
t1
;
ALTER
TABLESPACE
ts1
DROP
DATAFILE
'datafile2.dat'
ENGINE
NDB
;
ALTER
TABLESPACE
ts1
DROP
DATAFILE
'datafile.dat'
ENGINE
NDB
;
DROP
TABLESPACE
ts1
ENGINE
NDB
;
DROP
LOGFILE
GROUP
lg1
ENGINE
NDB
;
--
echo
****
End
=
And
No
=
****
############ End = And No = ##################
# End 5.1 test
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