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
9e4ba7da
Commit
9e4ba7da
authored
Sep 30, 2004
by
magnus@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WL#1424 Added more advanced test cases for autodiscovery
parent
19787199
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
285 additions
and
48 deletions
+285
-48
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+3
-0
mysql-test/r/ndb_autodiscover.result
mysql-test/r/ndb_autodiscover.result
+123
-1
mysql-test/t/ndb_autodiscover.test
mysql-test/t/ndb_autodiscover.test
+159
-47
No files found.
mysql-test/mysql-test-run.sh
View file @
9e4ba7da
...
...
@@ -1467,10 +1467,13 @@ then
fi
./ndb/ndbcluster
--port-base
=
$NDBCLUSTER_PORT
$NDBCLUSTER_OPTS
--diskless
--initial
--data-dir
=
$MYSQL_TEST_DIR
/var
||
exit
1
USE_NDBCLUSTER
=
"
$USE_NDBCLUSTER
--ndb-connectstring=
\"
host=localhost:
$NDBCLUSTER_PORT
\"
"
NDB_CONNECTSTRING
=
"localhost:
$NDBCLUSTER_PORT
"
else
USE_NDBCLUSTER
=
"
$USE_NDBCLUSTER
--ndb-connectstring=
\"
$USE_RUNNING_NDBCLUSTER
\"
"
NDB_CONNECTSTRING
=
"
$USE_RUNNING_NDBCLUSTER
"
echo
"Using ndbcluster at
$USE_NDBCLUSTER
"
fi
export
NDB_CONNECTSTRING
fi
start_manager
...
...
mysql-test/r/ndb_autodiscover.result
View file @
9e4ba7da
drop table if exists t1,t2,t3,t4,t5,t6,t7,t9;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t
8,t
9;
flush status;
create table t1(
id int not null primary key,
...
...
@@ -151,6 +151,128 @@ Variable_name Value
Handler_discover 2
drop table t6, t7;
flush status;
create table t4(
id int not null primary key,
name char(27)
) engine=ndb;
insert into t4 values (1, "Automatic");
select * from t4;
id name
1 Automatic
select * from t4;
ERROR 42S02: Table 'test.t4' doesn't exist
select * from t4;
ERROR 42S02: Table 'test.t4' doesn't exist
show status like 'handler_discover%';
Variable_name Value
Handler_discover 0
drop table t4;
flush status;
create table t4(
id int not null primary key,
id2 int,
name char(27)
) engine=ndb;
insert into t4 values (1, 76, "Automatic2");
select * from t4;
id id2 name
1 76 Automatic2
flush tables;
SHOW TABLES;
Tables_in_test
select * from t4;
ERROR 42S02: Table 'test.t4' doesn't exist
flush status;
create table t1(id int) engine=ndbcluster;
create table t2(id int, b char(255)) engine=myisam;
create table t3(id int, c char(255)) engine=ndbcluster;
create table t4(id int) engine=myisam;
create table t5(id int, d char(56)) engine=ndbcluster;
create table t6(id int) engine=ndbcluster;
create table t7(id int) engine=ndbcluster;
create table t8(id int, e char(34)) engine=myisam;
create table t9(id int) engine=myisam;
insert into t2 values (2, "myisam table 2");
insert into t3 values (3, "ndb table 3");
insert into t5 values (5, "ndb table 5");
insert into t6 values (6);
insert into t8 values (8, "myisam table 8");
insert into t9 values (9);
SHOW TABLES;
Tables_in_test
t1
t2
t4
t8
t9
t7
t6
select * from t6;
id
6
select * from t7;
id
show status like 'handler_discover%';
Variable_name Value
Handler_discover 2
drop table t1, t2, t4, t6, t7, t8, t9;
flush status;
create table t1(id int) engine=ndbcluster;
create table t2(id int, b char(255)) engine=myisam;
create table t3(id int, c char(255)) engine=ndbcluster;
create table t4(id int) engine=myisam;
create table t5(id int, d char(56)) engine=ndbcluster;
create table t6(id int) engine=ndbcluster;
create table t7(id int) engine=ndbcluster;
create table t8(id int, e char(34)) engine=myisam;
create table t9(id int) engine=myisam;
insert into t2 values (2, "myisam table 2");
insert into t3 values (3, "ndb table 3");
insert into t5 values (5, "ndb table 5");
insert into t6 values (6);
insert into t8 values (8, "myisam table 8");
insert into t9 values (9);
SHOW TABLES LIKE 't6';
Tables_in_test (t6)
t6
show status like 'handler_discover%';
Variable_name Value
Handler_discover 1
create table t3(a int);
ERROR 42S01: Table 't3' already exists
create table t5(a int);
ERROR 42S01: Table 't5' already exists
SHOW TABLES LIKE 't%';
Tables_in_test (t%)
t1
t2
t4
t6
t8
t9
t7
show status like 'handler_discover%';
Variable_name Value
Handler_discover 2
drop table t1, t2, t4, t6, t7, t8, t9;
flush status;
create table t1(id int) engine=ndbcluster;
create table t2(id int, b char(255)) engine=ndbcluster;
create table t3(id int, c char(255)) engine=ndbcluster;
create table t4(id int) engine=myisam;
insert into t1 values (1);
insert into t2 values (2, "table 2");
insert into t3 values (3, "ndb table 3");
insert into t4 values (4);
flush tables;
select * from t1, t2, t3, t4;
id id b id c id
1 2 table 2 3 ndb table 3 4
show status like 'handler_discover%';
Variable_name Value
Handler_discover 3
drop table t1, t2, t3, t4;
flush status;
show status like 'handler_discover%';
Variable_name Value
Handler_discover 0
...
...
mysql-test/t/ndb_autodiscover.test
View file @
9e4ba7da
--
source
include
/
have_ndb
.
inc
--
disable_warnings
drop
table
if
exists
t1
,
t2
,
t3
,
t4
,
t5
,
t6
,
t7
,
t9
;
drop
table
if
exists
t1
,
t2
,
t3
,
t4
,
t5
,
t6
,
t7
,
t
8
,
t
9
;
--
enable_warnings
################################################
...
...
@@ -189,38 +189,27 @@ drop table t6, t7;
# saying "No such table existed"
#
# Commented out, to be fixed
#
flush
status
;
create
table
t4
(
id
int
not
null
primary
key
,
name
char
(
27
)
)
engine
=
ndb
;
insert
into
t4
values
(
1
,
"Automatic"
);
select
*
from
t4
;
#flush status;
#
#create table t4(
# id int not null primary key,
# name char(27)
#) engine=ndb;
#insert into t4 values (1, "Automatic");
#select * from t4;
#
# Remove the table from NDB
#
system exec $NDB_TOOLS_DIR/ndb_drop_table -d test t4 > /dev/null ;
system
exec
$NDB_TOOLS_DIR
/
ndb_drop_table
-
d
test
t4
>
/
dev
/
null
;
#system exec ../ndb/tools/ndb_show_tables > var/log/ndb_show_tables.log;
#
# Test that correct error is returned
#--error 1146
#select * from t4;
#--error 1146
#select * from t4;
#
#show status like 'handler_discover%';
#drop table t4;
#
#
# system exec $NDB_TOOLS_DIR/ndb_drop_table -d test t4 > /dev/null ;
#
#
#
#show tables;
--
error
1146
select
*
from
t4
;
--
error
1146
select
*
from
t4
;
show
status
like
'handler_discover%'
;
drop
table
t4
;
#######################################################
...
...
@@ -228,29 +217,153 @@ drop table t6, t7;
# but still exists on disk is deleted from disk
# when SHOW TABLES is called
#
flush
status
;
create
table
t4
(
id
int
not
null
primary
key
,
id2
int
,
name
char
(
27
)
)
engine
=
ndb
;
insert
into
t4
values
(
1
,
76
,
"Automatic2"
);
select
*
from
t4
;
flush
tables
;
# Remove the table from NDB
system
exec
$NDB_TOOLS_DIR
/
ndb_drop_table
-
d
test
t4
>
/
dev
/
null
;
SHOW
TABLES
;
--
error
1146
select
*
from
t4
;
#######################################################
# Test SHOW TABLES ability to detect new and delete old
# tables. Test all at once using many tables
#
#flush status;
flush
status
;
# Create tables
create
table
t1
(
id
int
)
engine
=
ndbcluster
;
create
table
t2
(
id
int
,
b
char
(
255
))
engine
=
myisam
;
create
table
t3
(
id
int
,
c
char
(
255
))
engine
=
ndbcluster
;
create
table
t4
(
id
int
)
engine
=
myisam
;
create
table
t5
(
id
int
,
d
char
(
56
))
engine
=
ndbcluster
;
create
table
t6
(
id
int
)
engine
=
ndbcluster
;
create
table
t7
(
id
int
)
engine
=
ndbcluster
;
create
table
t8
(
id
int
,
e
char
(
34
))
engine
=
myisam
;
create
table
t9
(
id
int
)
engine
=
myisam
;
# Populate tables
insert
into
t2
values
(
2
,
"myisam table 2"
);
insert
into
t3
values
(
3
,
"ndb table 3"
);
insert
into
t5
values
(
5
,
"ndb table 5"
);
insert
into
t6
values
(
6
);
insert
into
t8
values
(
8
,
"myisam table 8"
);
insert
into
t9
values
(
9
);
# Remove t3, t5 from NDB
system
exec
$NDB_TOOLS_DIR
/
ndb_drop_table
-
d
test
t3
>
/
dev
/
null
;
system
exec
$NDB_TOOLS_DIR
/
ndb_drop_table
-
d
test
t5
>
/
dev
/
null
;
# Remove t6, t7 from disk
system
rm
var
/
master
-
data
/
test
/
t6
.
frm
>
/
dev
/
null
;
system
rm
var
/
master
-
data
/
test
/
t7
.
frm
>
/
dev
/
null
;
SHOW
TABLES
;
select
*
from
t6
;
select
*
from
t7
;
show
status
like
'handler_discover%'
;
drop
table
t1
,
t2
,
t4
,
t6
,
t7
,
t8
,
t9
;
#######################################################
# Test SHOW TABLES LIKE ability to detect new and delete old
# tables. Test all at once using many tables.
#
#create table t4(
# id int not null primary key,
# id2 int,
# name char(27)
#) engine=ndb;
#insert into t4 values (1, 76, "Automatic2");
#select * from t4;
#flush tables;
flush
status
;
# Create tables
create
table
t1
(
id
int
)
engine
=
ndbcluster
;
create
table
t2
(
id
int
,
b
char
(
255
))
engine
=
myisam
;
create
table
t3
(
id
int
,
c
char
(
255
))
engine
=
ndbcluster
;
create
table
t4
(
id
int
)
engine
=
myisam
;
create
table
t5
(
id
int
,
d
char
(
56
))
engine
=
ndbcluster
;
create
table
t6
(
id
int
)
engine
=
ndbcluster
;
create
table
t7
(
id
int
)
engine
=
ndbcluster
;
create
table
t8
(
id
int
,
e
char
(
34
))
engine
=
myisam
;
create
table
t9
(
id
int
)
engine
=
myisam
;
# Populate tables
insert
into
t2
values
(
2
,
"myisam table 2"
);
insert
into
t3
values
(
3
,
"ndb table 3"
);
insert
into
t5
values
(
5
,
"ndb table 5"
);
insert
into
t6
values
(
6
);
insert
into
t8
values
(
8
,
"myisam table 8"
);
insert
into
t9
values
(
9
);
# Remove t3, t5 from NDB
system
exec
$NDB_TOOLS_DIR
/
ndb_drop_table
-
d
test
t3
>
/
dev
/
null
;
system
exec
$NDB_TOOLS_DIR
/
ndb_drop_table
-
d
test
t5
>
/
dev
/
null
;
# Remove t6, t7 from disk
system
rm
var
/
master
-
data
/
test
/
t6
.
frm
>
/
dev
/
null
;
system
rm
var
/
master
-
data
/
test
/
t7
.
frm
>
/
dev
/
null
;
SHOW
TABLES
LIKE
't6'
;
show
status
like
'handler_discover%'
;
# Check that t3 or t5 can't be created
# frm files for these tables is stilll on disk
--
error
1050
create
table
t3
(
a
int
);
--
error
1050
create
table
t5
(
a
int
);
SHOW
TABLES
LIKE
't%'
;
show
status
like
'handler_discover%'
;
drop
table
t1
,
t2
,
t4
,
t6
,
t7
,
t8
,
t9
;
######################################################
# Test that several tables can be discovered when
# one statement access several table at once.
#
# Remove the table from NDB
#system exec ../ndb/tools/ndb_drop_table -c localhost:9350 -d test t4 > /dev/null ;
#system exec ../ndb/tools/ndb_show_tables > var/log/ndb_show_tables.log;
flush
status
;
#SHOW TABLES;
# Create tables
create
table
t1
(
id
int
)
engine
=
ndbcluster
;
create
table
t2
(
id
int
,
b
char
(
255
))
engine
=
ndbcluster
;
create
table
t3
(
id
int
,
c
char
(
255
))
engine
=
ndbcluster
;
create
table
t4
(
id
int
)
engine
=
myisam
;
# Populate tables
insert
into
t1
values
(
1
);
insert
into
t2
values
(
2
,
"table 2"
);
insert
into
t3
values
(
3
,
"ndb table 3"
);
insert
into
t4
values
(
4
);
# Remove t1, t2, t3 from disk
system
rm
var
/
master
-
data
/
test
/
t1
.
frm
>
/
dev
/
null
;
system
rm
var
/
master
-
data
/
test
/
t2
.
frm
>
/
dev
/
null
;
system
rm
var
/
master
-
data
/
test
/
t3
.
frm
>
/
dev
/
null
;
flush
tables
;
# Is there another way to find out that the file is gone?
#--error 1146
#select * from t4;
# Select from the table which only exists in NDB.
select
*
from
t1
,
t2
,
t3
,
t4
;
# 3 table should have been discovered
show
status
like
'handler_discover%'
;
drop
table
t1
,
t2
,
t3
,
t4
;
#########################################################
...
...
@@ -334,6 +447,5 @@ system rm var/master-data/test/t9.frm ;
# MySQL Server will have been restarted because it has a
# ndb_autodiscover2-master.opt file.
#TODO
#SLECT * FROM t1, t2, t4;
#handler discover 3;
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