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
ae85835c
Commit
ae85835c
authored
Sep 05, 2021
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings from -DPLUGIN_PARTITION=NO, portably.
Also fix Spider's cmake.
parent
4ffcfe7c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
sql/datadict.cc
sql/datadict.cc
+3
-1
sql/handler.cc
sql/handler.cc
+3
-1
storage/spider/CMakeLists.txt
storage/spider/CMakeLists.txt
+1
-1
No files found.
sql/datadict.cc
View file @
ae85835c
...
...
@@ -151,7 +151,9 @@ Table_type dd_frm_type(THD *thd, char *path, LEX_CSTRING *engine_name,
}
}
cont:
__attribute__
((
unused
));
#ifdef WITH_PARTITION_STORAGE_ENGINE
cont:
#endif
/* read the true engine name */
{
MY_STAT
state
;
...
...
sql/handler.cc
View file @
ae85835c
...
...
@@ -6201,7 +6201,9 @@ bool ha_table_exists(THD *thd, const LEX_CSTRING *db,
DBUG_RETURN
(
TRUE
);
}
retry_from_frm:
__attribute__
((
unused
));
#ifdef WITH_PARTITION_STORAGE_ENGINE
retry_from_frm:
#endif
char
path
[
FN_REFLEN
+
1
];
size_t
path_len
=
build_table_filename
(
path
,
sizeof
(
path
)
-
1
,
db
->
str
,
table_name
->
str
,
""
,
0
);
...
...
storage/spider/CMakeLists.txt
View file @
ae85835c
...
...
@@ -73,7 +73,7 @@ IF(ORACLE_INCLUDE_DIR AND ORACLE_OCI_LIBRARY)
ENDIF
()
ENDIF
()
IF
(
MSVC
)
IF
(
MSVC
AND
(
TARGET spider
)
)
IF
(
CMAKE_BUILD_TYPE STREQUAL
"Debug"
)
ADD_CUSTOM_COMMAND
(
TARGET spider
POST_BUILD
...
...
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