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
9bf8a685
Commit
9bf8a685
authored
Mar 27, 2014
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disable connect tests for --embedded
parent
a0266bbd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
storage/connect/CMakeLists.txt
storage/connect/CMakeLists.txt
+1
-0
storage/connect/mysql-test/connect/suite.pm
storage/connect/mysql-test/connect/suite.pm
+5
-0
No files found.
storage/connect/CMakeLists.txt
View file @
9bf8a685
...
...
@@ -271,6 +271,7 @@ ENDIF(CONNECT_WITH_ODBC)
MYSQL_ADD_PLUGIN
(
connect
${
CONNECT_SOURCES
}
STORAGE_ENGINE
COMPONENT connect-engine
RECOMPILE_FOR_EMBEDDED
LINK_LIBRARIES
${
ZLIB_LIBRARY
}
${
XML_LIBRARY
}
${
ICONV_LIBRARY
}
${
ODBC_LIBRARY
}
${
IPHLPAPI_LIBRARY
}
)
storage/connect/mysql-test/connect/suite.pm
View file @
9bf8a685
...
...
@@ -5,6 +5,11 @@ package My::Suite::Connect;
return
"
No CONNECT engine
"
unless
$ENV
{
HA_CONNECT_SO
}
or
$::mysqld_variables
{'
connect
'}
eq
"
ON
";
# RECOMPILE_FOR_EMBEDDED also means that a plugin
# cannot be dynamically loaded into embedded
return
"
Not run for embedded server
"
if
$::opt_embedded_server
and
$ENV
{
HA_CONNECT_SO
};
sub
is_default
{
1
}
bless
{
};
...
...
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