List:Commits« Previous MessageNext Message »
From:Stewart Smith Date:August 21 2008 5:53pm
Subject:bzr push into mysql-5.1 branch (stewart:2795 to 2796)
View as plain text  
 2796 Stewart Smith	2008-08-22
      Add PARTITION to config.cmake (allowing selection from Cmake UI). Automatically
enable partitioning if NDB engine is enabled.
modified:
  config.cmake

 2795 Stewart Smith	2008-08-22
      WL4012 WL1744 (ndb on win32) use portable my_stat in printSysFile.cpp
modified:
  storage/ndb/src/kernel/blocks/dbdih/printSysfile.cpp

=== modified file 'config.cmake'
--- a/config.cmake	2008-08-20 13:22:09 +0000
+++ b/config.cmake	2008-08-21 15:30:00 +0000
@@ -95,8 +95,13 @@ SET(WITH_BLACKHOLE_STORAGE_ENGINE FALSE 
 SET(WITH_EXAMPLE_STORAGE_ENGINE FALSE CACHE BOOL "Include Example engine")
 SET(WITH_FEDERATED_STORAGE_ENGINE FALSE CACHE BOOL "Include Federated")
 SET(WITH_INNOBASE_STORAGE_ENGINE FALSE CACHE BOOL "Include InnoDB engine")
+SET(WITH_PARTITION_STORAGE_ENGINE FALSE CACHE BOOL "Include NDB Cluster")
 SET(WITH_NDBCLUSTER_STORAGE_ENGINE FALSE CACHE BOOL "Include NDB Cluster")
 
+IF(WITH_NDBCLUSTER_STORAGE_ENGINE)
+  SET(WITH_PARTITION_STORAGE_ENGINE TRUE)
+ENDIF(WITH_NDBCLUSTER_STORAGE_ENGINE)
+
 SET(NDB_SCI_INCLUDES "" CACHE STRING "")
 SET(NDB_SCI_LIBS "" CACHE STRING "")
 SET(NDB_TEST TRUE CACHE BOOL "Include the NDB Cluster ndbapi test programs")

Thread
bzr push into mysql-5.1 branch (stewart:2795 to 2796) Stewart Smith21 Aug