Commit 824c6cf9 authored by unknown's avatar unknown

Fixed partition push so that it now compiles. The sinclude directory was not...

Fixed partition push so that it now compiles. The sinclude directory was not added which means that though the code was in the tree, it never actually compiled. I did make sure that it compiles, but there are no tests to really test functionality at this point.


BUILD/SETUP.sh:
  Added partition engine to default max builds.
config/ac-macros/ha_partition.m4:
  Fixed spacing issue
configure.in:
  Added sinclude for partition rules
parent 9ea1d5e2
...@@ -48,8 +48,8 @@ global_warnings="-Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wch ...@@ -48,8 +48,8 @@ global_warnings="-Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wch
c_warnings="$global_warnings -Wunused" c_warnings="$global_warnings -Wunused"
cxx_warnings="$global_warnings -Woverloaded-virtual -Wsign-promo -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor" cxx_warnings="$global_warnings -Woverloaded-virtual -Wsign-promo -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor"
base_max_configs="--with-innodb --with-berkeley-db --with-ndbcluster --with-archive-storage-engine --with-openssl --with-big-tables --with-blackhole-storage-engine --with-federated-storage-engine" base_max_configs="--with-innodb --with-berkeley-db --with-ndbcluster --with-archive-storage-engine --with-openssl --with-big-tables --with-blackhole-storage-engine --with-federated-storage-engine --with-partition"
max_leave_isam_configs="--with-innodb --with-berkeley-db --with-ndbcluster --with-archive-storage-engine --with-federated-storage-engine --with-blackhole-storage-engine --with-openssl --with-embedded-server --with-big-tables" max_leave_isam_configs="--with-innodb --with-berkeley-db --with-ndbcluster --with-archive-storage-engine --with-federated-storage-engine --with-blackhole-storage-engine --with-openssl --with-embedded-server --with-big-tables --with-partition"
max_configs="$base_max_configs --with-embedded-server" max_configs="$base_max_configs --with-embedded-server"
path=`dirname $0` path=`dirname $0`
......
...@@ -6,7 +6,7 @@ AC_DEFUN([MYSQL_CHECK_PARTITIONDB], [ ...@@ -6,7 +6,7 @@ AC_DEFUN([MYSQL_CHECK_PARTITIONDB], [
AC_ARG_WITH([partition], AC_ARG_WITH([partition],
[ [
--with-partition --with-partition
Enable the Partition Storage Engine], Enable the Partition Storage Engine],
[partitiondb="$withval"], [partitiondb="$withval"],
[partitiondb=no]) [partitiondb=no])
AC_MSG_CHECKING([for partition]) AC_MSG_CHECKING([for partition])
......
...@@ -43,6 +43,7 @@ sinclude(config/ac-macros/ha_example.m4) ...@@ -43,6 +43,7 @@ sinclude(config/ac-macros/ha_example.m4)
sinclude(config/ac-macros/ha_federated.m4) sinclude(config/ac-macros/ha_federated.m4)
sinclude(config/ac-macros/ha_innodb.m4) sinclude(config/ac-macros/ha_innodb.m4)
sinclude(config/ac-macros/ha_ndbcluster.m4) sinclude(config/ac-macros/ha_ndbcluster.m4)
sinclude(config/ac-macros/ha_partition.m4)
sinclude(config/ac-macros/ha_tina.m4) sinclude(config/ac-macros/ha_tina.m4)
sinclude(config/ac-macros/large_file.m4) sinclude(config/ac-macros/large_file.m4)
sinclude(config/ac-macros/misc.m4) sinclude(config/ac-macros/misc.m4)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment