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
875e8be2
Commit
875e8be2
authored
Sep 05, 2011
by
Bjorn Munch
Browse files
Options
Browse Files
Download
Plain Diff
upmerge test fix part of 11750417
parents
7a2b528e
41494654
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
9 deletions
+39
-9
mysql-test/suite/federated/federated_plugin-master.opt
mysql-test/suite/federated/federated_plugin-master.opt
+1
-0
mysql-test/suite/federated/federated_plugin.result
mysql-test/suite/federated/federated_plugin.result
+19
-0
mysql-test/suite/federated/federated_plugin.test
mysql-test/suite/federated/federated_plugin.test
+19
-9
No files found.
mysql-test/suite/federated/federated_plugin-master.opt
View file @
875e8be2
--plugin_dir=$FEDERATED_PLUGIN_DIR
--plugin_dir=$FEDERATED_PLUGIN_DIR
--loose-federated=ON
mysql-test/suite/federated/federated_plugin.result
View file @
875e8be2
CREATE TABLE t2(a int);
CREATE TABLE t1(a int) ENGINE=FEDERATED
CONNECTION='mysql://root@localhost:$MASTER_MYPORT/test/t2';
Warnings:
Warning 1286 Unknown storage engine 'FEDERATED'
Warning 1266 Using storage engine MyISAM for table 't1'
DROP TABLE t1;
INSTALL PLUGIN federated SONAME 'FEDERATED_PLUGIN';
INSTALL PLUGIN FEDERATED SONAME 'FEDERATED_PLUGIN';
ERROR HY000: Function 'FEDERATED' already exists
UNINSTALL PLUGIN federated;
INSTALL PLUGIN federated SONAME 'FEDERATED_PLUGIN';
CREATE TABLE t1(a int) ENGINE=FEDERATED
CONNECTION='mysql://root@localhost:$MASTER_MYPORT/test/t2';
DROP TABLE t1;
UNINSTALL PLUGIN federated;
UNINSTALL PLUGIN federated;
ERROR 42000: PLUGIN federated does not exist
DROP TABLE t2;
mysql-test/suite/federated/federated_plugin.test
View file @
875e8be2
--
source
include
/
not_windows
.
inc
--
source
include
/
have_federated_plugin
.
inc
--
source
include
/
have_federated_plugin
.
inc
--
skip
federated
plugin
is
disabled
connect
(
master
,
localhost
,
root
,,
test
,
$MASTER_MYPORT
,);
connect
(
slave
,
localhost
,
root
,,
test
,
$SLAVE_MYPORT
,);
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
FEDERATED
;
connection
master
;
CREATE
TABLE
t2
(
a
int
);
connection
slave
;
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
FEDERATED
CONNECTION
=
'mysql://root@localhost:$MASTER_MYPORT/test/t2'
;
DROP
TABLE
t1
;
DROP
TABLE
t1
;
INSTALL
PLUGIN
federated
SONAME
'ha_federated.so'
;
--
replace_result
$FEDERATED_PLUGIN
FEDERATED_PLUGIN
--
error
1125
eval
INSTALL
PLUGIN
federated
SONAME
'$FEDERATED_PLUGIN'
;
INSTALL
PLUGIN
FEDERATED
SONAME
'ha_federated.so'
;
--
replace_result
$FEDERATED_PLUGIN
FEDERATED_PLUGIN
--
error
ER_UDF_EXISTS
eval
INSTALL
PLUGIN
FEDERATED
SONAME
'$FEDERATED_PLUGIN'
;
UNINSTALL
PLUGIN
federated
;
UNINSTALL
PLUGIN
federated
;
INSTALL
PLUGIN
federated
SONAME
'ha_federated.so'
;
--
replace_result
$FEDERATED_PLUGIN
FEDERATED_PLUGIN
eval
INSTALL
PLUGIN
federated
SONAME
'$FEDERATED_PLUGIN'
;
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
FEDERATED
;
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
FEDERATED
CONNECTION
=
'mysql://root@localhost:$MASTER_MYPORT/test/t2'
;
DROP
TABLE
t1
;
DROP
TABLE
t1
;
UNINSTALL
PLUGIN
federated
;
UNINSTALL
PLUGIN
federated
;
--
error
ER_SP_DOES_NOT_EXIST
--
error
ER_SP_DOES_NOT_EXIST
UNINSTALL
PLUGIN
federated
;
UNINSTALL
PLUGIN
federated
;
connection
master
;
DROP
TABLE
t2
;
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