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
0759568b
Commit
0759568b
authored
Apr 20, 2015
by
Daniel Black
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test case for install plugin on boostrap
parent
fd977398
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
mysql-test/t/bootstrap.test
mysql-test/t/bootstrap.test
+19
-0
No files found.
mysql-test/t/bootstrap.test
View file @
0759568b
...
...
@@ -60,3 +60,22 @@ SELECT 'bug' as '' FROM INFORMATION_SCHEMA.ENGINES WHERE engine='innodb'
and
SUPPORT
=
'YES'
;
--
echo
End
of
5.5
tests
--
source
include
/
not_windows_embedded
.
inc
--
source
include
/
have_example_plugin
.
inc
#
# Check that --bootstrap can load/unload plugins
#
--
disable_query_log
let
$PLUGIN_DIR
=
`select @@plugin_dir`
;
eval
SELECT
"install plugin example soname '
$HA_EXAMPLE_SO
';"
INTO
OUTFILE
'$MYSQLTEST_VARDIR/tmp/install_plugin.sql'
;
--
enable_query_log
--
exec
$MYSQLD_BOOTSTRAP_CMD
--
plugin
-
dir
=
$PLUGIN_DIR
<
$MYSQLTEST_VARDIR
/
tmp
/
install_plugin
.
sql
>>
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap
.
log
2
>&
1
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
install_plugin
.
sql
;
--
write_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_plugins
.
sql
use
test
;
create
table
t1
(
a
int
)
engine
=
example
;
drop
table
t1
;
EOF
--
exec
$MYSQLD_BOOTSTRAP_CMD
--
plugin
-
dir
=
$PLUGIN_DIR
<
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_plugins
.
sql
>>
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap
.
log
2
>&
1
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
bootstrap_plugins
.
sql
;
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