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
aabbacba
Commit
aabbacba
authored
May 28, 2004
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New patch to ensure that InnoDB gets values for CFLAGS and CXXFLAGS
parent
ccc41712
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 @
aabbacba
...
...
@@ -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 @
aabbacba
...
...
@@ -403,12 +403,12 @@ class handler :public Sql_alloc
{
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