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
fa5d32de
Commit
fa5d32de
authored
Apr 26, 2008
by
msvensson@pilot.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't use empty string instead of --plugin-dir when plugins are not found
parent
e0ec994b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+5
-5
No files found.
mysql-test/mysql-test-run.pl
View file @
fa5d32de
...
...
@@ -1404,8 +1404,8 @@ sub environment_setup {
$ENV
{'
UDF_EXAMPLE_LIB
'}
=
(
$lib_udf_example
?
basename
(
$lib_udf_example
)
:
"");
$ENV
{'
UDF_EXAMPLE_LIB_OPT
'}
=
(
$lib_udf_example
?
"
--plugin_dir=
"
.
dirname
(
$lib_udf_example
)
:
"");
$ENV
{'
UDF_EXAMPLE_LIB_OPT
'}
=
"
--plugin-dir=
"
.
(
$lib_udf_example
?
dirname
(
$lib_udf_example
)
:
"");
# --------------------------------------------------------------------------
# Add the path where mysqld will find ha_example.so
...
...
@@ -1416,9 +1416,9 @@ sub environment_setup {
"
$basedir
/storage/example/.libs/ha_example.so
",);
$ENV
{'
EXAMPLE_PLUGIN
'}
=
(
$lib_example_plugin
?
basename
(
$lib_example_plugin
)
:
"");
$ENV
{'
EXAMPLE_PLUGIN_OPT
'}
=
(
$lib_example_plugin
?
"
--plugin_dir=
"
.
dirname
(
$lib_example_plugin
)
:
"");
$ENV
{'
EXAMPLE_PLUGIN_OPT
'}
=
"
--plugin-dir=
"
.
(
$lib_example_plugin
?
dirname
(
$lib_example_plugin
)
:
"");
}
# --------------------------------------------------------------------------
...
...
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