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
c1ebb4a6
Commit
c1ebb4a6
authored
Feb 19, 2015
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compiler warnings in spider
parent
16c01c70
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
storage/spider/CMakeLists.txt
storage/spider/CMakeLists.txt
+5
-0
storage/spider/ha_spider.cc
storage/spider/ha_spider.cc
+1
-1
storage/spider/ha_spider.h
storage/spider/ha_spider.h
+1
-1
No files found.
storage/spider/CMakeLists.txt
View file @
c1ebb4a6
SET
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-DHAVE_HANDLERSOCKET"
)
SET
(
CMAKE_C_FLAGS
"
${
CMAKE_C_FLAGS
}
-DHAVE_HANDLERSOCKET"
)
IF
(
HAVE_WVLA
)
SET
(
CMAKE_CXX_FLAGS_DEBUG
"
${
CMAKE_CXX_FLAGS_DEBUG
}
-Wno-vla"
)
SET
(
CMAKE_C_FLAGS_DEBUG
"
${
CMAKE_C_FLAGS_DEBUG
}
-Wno-vla"
)
ENDIF
()
SET
(
SPIDER_SOURCES
spd_param.cc spd_sys_table.cc spd_trx.cc spd_db_conn.cc spd_conn.cc
spd_table.cc spd_direct_sql.cc spd_udf.cc spd_ping_table.cc
...
...
storage/spider/ha_spider.cc
View file @
c1ebb4a6
...
...
@@ -10967,7 +10967,7 @@ bool ha_spider::is_crashed() const
DBUG_RETURN
(
FALSE
);
}
bool
ha_spider
::
auto_repair
()
const
bool
ha_spider
::
auto_repair
(
int
)
const
{
DBUG_ENTER
(
"ha_spider::auto_repair"
);
DBUG_PRINT
(
"info"
,(
"spider this=%p"
,
this
));
...
...
storage/spider/ha_spider.h
View file @
c1ebb4a6
...
...
@@ -682,7 +682,7 @@ public:
const
char
*
name
);
bool
is_crashed
()
const
;
bool
auto_repair
()
const
;
bool
auto_repair
(
int
)
const
;
int
disable_indexes
(
uint
mode
);
...
...
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