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
6f9b1186
Commit
6f9b1186
authored
Apr 01, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
45a79c90
3a3a91cd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
9 deletions
+5
-9
configure.in
configure.in
+2
-1
sql/ha_berkeley.cc
sql/ha_berkeley.cc
+1
-2
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+2
-6
No files found.
configure.in
View file @
6f9b1186
...
...
@@ -353,7 +353,8 @@ then
then
if
$CXX
-v
2>&1 |
grep
'version 3'
>
/dev/null 2>&1
then
CXXFLAGS
=
"
$CXXFLAGS
-DUSE_MYSYS_NEW -DDEFINE_CXA_PURE_VIRTUAL"
# Statically link the language support function's found in libsupc++.a
LIBS
=
"
$LIBS
-lsupc++"
fi
fi
fi
...
...
sql/ha_berkeley.cc
View file @
6f9b1186
...
...
@@ -372,9 +372,8 @@ void berkeley_cleanup_log_files(void)
** Berkeley DB tables
*****************************************************************************/
static
const
char
*
ha_bdb_bas_exts
[]
=
{
ha_berkeley_ext
,
NullS
};
const
char
**
ha_berkeley
::
bas_ext
()
const
{
return
ha_bdb_bas_exts
;
}
{
static
const
char
*
ext
[]
=
{
ha_berkeley_ext
,
NullS
};
return
ext
;
}
ulong
ha_berkeley
::
index_flags
(
uint
idx
,
uint
part
,
bool
all_parts
)
const
...
...
sql/ha_ndbcluster.cc
View file @
6f9b1186
...
...
@@ -3022,12 +3022,8 @@ int ha_ndbcluster::extra_opt(enum ha_extra_function operation, ulong cache_size)
}
static
const
char
*
ha_ndb_bas_ext
[]
=
{
ha_ndb_ext
,
NullS
};
const
char
**
ha_ndbcluster
::
bas_ext
()
const
{
return
ha_ndb_bas_ext
;
}
const
char
**
ha_ndbcluster
::
bas_ext
()
const
{
static
const
char
*
ext
[]
=
{
ha_ndb_ext
,
NullS
};
return
ext
;
}
/*
...
...
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