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
9061fbc8
Commit
9061fbc8
authored
May 28, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New patch to ensure that InnoDB gets values for CFLAGS and CXXFLAGS
sql/handler.h: Remove compiler warnings
parent
a153d35c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
configure.in
configure.in
+1
-0
sql/handler.h
sql/handler.h
+2
-2
No files found.
configure.in
View file @
9061fbc8
...
...
@@ -2659,6 +2659,7 @@ AM_CONDITIONAL(HAVE_NETWARE, test "$netware_dir" = "netware")
# Ensure that table handlers gets all modifications to CFLAGS/CXXFLAGS
export
CC CXX CFLAGS CXXFLAGS LD LDFLAGS AR
ac_configure_args
=
"
$ac_configure_args
CFLAGS='
$CFLAGS
' CXXFLAGS='
$CXXFLAGS
'"
if
test
"
$with_server
"
=
"yes"
-o
"
$THREAD_SAFE_CLIENT
"
!=
"no"
then
...
...
sql/handler.h
View file @
9061fbc8
...
...
@@ -403,12 +403,12 @@ public:
{
return
(
HA_DDL_SUPPORT
);
}
virtual
int
add_index
(
TABLE
*
table
,
KEY
*
key_info
,
uint
num_of_keys
)
virtual
int
add_index
(
TABLE
*
table
_arg
,
KEY
*
key_info
,
uint
num_of_keys
)
{
my_error
(
ER_NOT_SUPPORTED_YET
,
MYF
(
0
),
"online add index"
);
return
(
HA_DDL_NOT_IMPLEMENTED
);
}
virtual
int
drop_index
(
TABLE
*
table
,
uint
*
key_num
,
uint
num_of_keys
)
virtual
int
drop_index
(
TABLE
*
table
_arg
,
uint
*
key_num
,
uint
num_of_keys
)
{
my_error
(
ER_NOT_SUPPORTED_YET
,
MYF
(
0
),
"online drop index"
);
return
(
HA_DDL_NOT_IMPLEMENTED
);
...
...
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