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
35166137
Commit
35166137
authored
Apr 20, 2006
by
acurtis@xiphis.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WL#3201
Fixes after first review
parent
4e11a4d9
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
134 additions
and
73 deletions
+134
-73
config/ac-macros/ha_ndbcluster.m4
config/ac-macros/ha_ndbcluster.m4
+0
-2
config/ac-macros/plugins.m4
config/ac-macros/plugins.m4
+128
-66
configure.in
configure.in
+2
-4
sql/ha_partition.cc
sql/ha_partition.cc
+1
-1
sql/handler.cc
sql/handler.cc
+3
-0
No files found.
config/ac-macros/ha_ndbcluster.m4
View file @
35166137
...
...
@@ -307,9 +307,7 @@ AC_DEFUN([MYSQL_SETUP_NDBCLUSTER], [
AC_SUBST(NDB_DEFS)
AC_SUBST(ndb_cxxflags_fix)
])
AC_DEFUN([NDBCLUSTER_CONFIG_FILES], [
AC_CONFIG_FILES(storage/ndb/Makefile storage/ndb/include/Makefile dnl
storage/ndb/src/Makefile storage/ndb/src/common/Makefile dnl
storage/ndb/docs/Makefile dnl
...
...
config/ac-macros/plugins.m4
View file @
35166137
This diff is collapsed.
Click to expand it.
configure.in
View file @
35166137
...
...
@@ -123,8 +123,8 @@ MYSQL_MODULE_DIRECTORY(ndbcluster,[storage/ndb])
MYSQL_MODULE_STATIC
(
ndbcluster,
[[
\$
(
ndbcluster_libs
)
\$
(
ndbcluster_system_libs
)
\$
(
NDB_SCI_LIBS
)]])
MYSQL_MODULE_ACTIONS
(
ndbcluster,[MYSQL_SETUP_NDBCLUSTER]
)
MYSQL_STORAGE_ENGINE
(
partition, partition,
[
Partition
Engine
],
[
MySQL
Table Partitioning Engine
],
[
max,max-no-ndb]
)
MYSQL_STORAGE_ENGINE
(
partition, partition,
[
Partition
Support
],
[
MySQL
Partitioning Support
],
[
max,max-no-ndb]
)
MYSQL_MODULE_MANDATORY
(
csv
)
dnl Used
for
logging
MYSQL_MODULE_MANDATORY
(
heap
)
dnl Memory tables
...
...
@@ -2624,8 +2624,6 @@ done
AC_SUBST
(
MAKE_BINARY_DISTRIBUTION_OPTIONS
)
NDBCLUSTER_CONFIG_FILES
# Output results
AC_CONFIG_FILES
(
Makefile extra/Makefile mysys/Makefile dnl
strings/Makefile regex/Makefile dnl
...
...
sql/ha_partition.cc
View file @
35166137
...
...
@@ -5498,7 +5498,7 @@ mysql_declare_plugin(partition)
&
partition_hton
,
partition_hton
.
name
,
"Mikael Ronstrom, MySQL AB"
,
"Partitioning
Engine
"
,
"Partitioning
Support
"
,
NULL
,
/* Plugin Init */
NULL
,
/* Plugin Deinit */
0x0100
/* 1.0 */
,
...
...
sql/handler.cc
View file @
35166137
...
...
@@ -44,6 +44,9 @@
#include "ha_innodb.h"
#endif
/* While we have legacy_db_type, we have this array to
check for dups and to find handlerton from legacy_db_type.
Remove when legacy_db_type is finally gone */
static
handlerton
*
installed_htons
[
128
];
#define BITMAP_STACKBUF_SIZE (128/8)
...
...
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