mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 02:46:29 +01:00 
			
		
		
		
	 3bd23b76c5
			
		
	
	
	3bd23b76c5
	
	
	
		
			
			For InnoDB tables, parse the CREATE TABLE statement to defer index and constraint creation until after data loading. For other storage engines, the DISABLE/ENABLE KEYS commands achieve similar optimization. This behavior is controlled by a new option, innodb-optimize-keys (default: ON), compatible with mydumper. Additionally, this commit separates the table creation phase from data loading. Running DDL statements (such as DROP IF EXISTS) in a single thread avoids the "table not locked" issue from MDEV-34741. As a bonus, view creation no longer requires a separate step.
		
			
				
	
	
		
			114 lines
		
	
	
	
		
			4.4 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
	
		
			4.4 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # Copyright (c) 2006, 2015, Oracle and/or its affiliates. All rights reserved.
 | |
| # Copyright (c) 2008, 2019, MariaDB Corporation
 | |
| # 
 | |
| # This program is free software; you can redistribute it and/or modify
 | |
| # it under the terms of the GNU General Public License as published by
 | |
| # the Free Software Foundation; version 2 of the License.
 | |
| # 
 | |
| # This program is distributed in the hope that it will be useful,
 | |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
| # GNU General Public License for more details.
 | |
| # 
 | |
| # You should have received a copy of the GNU General Public License
 | |
| # along with this program; if not, write to the Free Software
 | |
| # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1335 USA
 | |
| 
 | |
| INCLUDE_DIRECTORIES(
 | |
|   ${CMAKE_SOURCE_DIR}/include
 | |
|   ${PCRE_INCLUDE_DIRS}
 | |
|   ${CMAKE_SOURCE_DIR}/mysys_ssl
 | |
|   ${ZLIB_INCLUDE_DIRS}
 | |
|   ${SSL_INCLUDE_DIRS}
 | |
|   ${CMAKE_SOURCE_DIR}/sql
 | |
|   ${CMAKE_SOURCE_DIR}/strings
 | |
|   ${MY_READLINE_INCLUDE_DIR}
 | |
|   ${CMAKE_CURRENT_BINARY_DIR}
 | |
| )
 | |
| 
 | |
| INCLUDE_DIRECTORIES(BEFORE
 | |
|   ${CMAKE_BINARY_DIR}/libmariadb/include
 | |
|   ${CMAKE_SOURCE_DIR}/libmariadb/include)
 | |
| 
 | |
| ## We will need libeay32.dll and ssleay32.dll when running client executables.
 | |
| COPY_OPENSSL_DLLS(copy_openssl_client)
 | |
| 
 | |
| SET(CLIENT_LIB mariadbclient mysys)
 | |
| 
 | |
| ADD_DEFINITIONS(${SSL_DEFINES})
 | |
| MYSQL_ADD_EXECUTABLE(mariadb completion_hash.cc mysql.cc readline.cc
 | |
|                            ${CMAKE_SOURCE_DIR}/sql/sql_string.cc)
 | |
| TARGET_LINK_LIBRARIES(mariadb ${CLIENT_LIB})
 | |
| IF(UNIX)
 | |
|   TARGET_LINK_LIBRARIES(mariadb ${MY_READLINE_LIBRARY})
 | |
|   SET_TARGET_PROPERTIES(mariadb PROPERTIES ENABLE_EXPORTS TRUE)
 | |
| ENDIF(UNIX)
 | |
| 
 | |
| MYSQL_ADD_EXECUTABLE(mariadb-test mysqltest.cc ${CMAKE_SOURCE_DIR}/sql/sql_string.cc COMPONENT Test)
 | |
| SET_SOURCE_FILES_PROPERTIES(mysqltest.cc PROPERTIES COMPILE_FLAGS "-DTHREADS ${PCRE2_DEBIAN_HACK}")
 | |
| TARGET_LINK_LIBRARIES(mariadb-test  ${CLIENT_LIB} pcre2-posix pcre2-8)
 | |
| SET_TARGET_PROPERTIES(mariadb-test PROPERTIES ENABLE_EXPORTS TRUE)
 | |
| 
 | |
| 
 | |
| MYSQL_ADD_EXECUTABLE(mariadb-check mysqlcheck.c)
 | |
| TARGET_LINK_LIBRARIES(mariadb-check ${CLIENT_LIB})
 | |
| 
 | |
| MYSQL_ADD_EXECUTABLE(mariadb-dump mysqldump.cc ../sql-common/my_user.c connection_pool.cc)
 | |
| TARGET_LINK_LIBRARIES(mariadb-dump ${CLIENT_LIB})
 | |
| 
 | |
| ADD_LIBRARY(import_util STATIC import_util.cc import_util.h)
 | |
| IF (PCRE2_DEBIAN_HACK)
 | |
|   SET_SOURCE_FILES_PROPERTIES(import_util.cc PROPERTIES COMPILE_FLAGS "${PCRE2_DEBIAN_HACK}")
 | |
| ENDIF()
 | |
| TARGET_LINK_LIBRARIES(import_util PRIVATE pcre2-posix pcre2-8)
 | |
| TARGET_INCLUDE_DIRECTORIES(import_util PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
 | |
| 
 | |
| MYSQL_ADD_EXECUTABLE(mariadb-import mysqlimport.cc)
 | |
| TARGET_INCLUDE_DIRECTORIES(mariadb-import PRIVATE ${CMAKE_SOURCE_DIR}/tpool)
 | |
| TARGET_LINK_LIBRARIES(mariadb-import PRIVATE tpool ${CLIENT_LIB} import_util)
 | |
| 
 | |
| 
 | |
| MYSQL_ADD_EXECUTABLE(mariadb-upgrade mysql_upgrade.c COMPONENT Server)
 | |
| TARGET_LINK_LIBRARIES(mariadb-upgrade ${CLIENT_LIB})
 | |
| ADD_DEPENDENCIES(mariadb-upgrade GenFixPrivs)
 | |
| 
 | |
| MYSQL_ADD_EXECUTABLE(mariadb-show mysqlshow.c)
 | |
| TARGET_LINK_LIBRARIES(mariadb-show ${CLIENT_LIB})
 | |
| 
 | |
| MYSQL_ADD_EXECUTABLE(mariadb-plugin mysql_plugin.c)
 | |
| TARGET_LINK_LIBRARIES(mariadb-plugin ${CLIENT_LIB})
 | |
| 
 | |
| MYSQL_ADD_EXECUTABLE(mariadb-binlog mysqlbinlog.cc)
 | |
| TARGET_LINK_LIBRARIES(mariadb-binlog ${CLIENT_LIB} mysys_ssl)
 | |
| 
 | |
| MYSQL_ADD_EXECUTABLE(mariadb-admin mysqladmin.cc ../sql/password.c)
 | |
| TARGET_LINK_LIBRARIES(mariadb-admin ${CLIENT_LIB} mysys_ssl)
 | |
| 
 | |
| MYSQL_ADD_EXECUTABLE(mariadb-slap mysqlslap.c)
 | |
| SET_SOURCE_FILES_PROPERTIES(mysqlslap.c PROPERTIES COMPILE_FLAGS "-DTHREADS")
 | |
| TARGET_LINK_LIBRARIES(mariadb-slap ${CLIENT_LIB})
 | |
| 
 | |
| MYSQL_ADD_EXECUTABLE(mariadb-conv mariadb-conv.cc
 | |
|                      ${CMAKE_SOURCE_DIR}/sql/sql_string.cc)
 | |
| TARGET_LINK_LIBRARIES(mariadb-conv mysys strings)
 | |
| 
 | |
| IF(WIN32)
 | |
|   MYSQL_ADD_EXECUTABLE(echo echo.c COMPONENT Test)
 | |
| ENDIF(WIN32)
 | |
| 
 | |
| # async_example is just a code example, do not install it.
 | |
| ADD_EXECUTABLE(async_example async_example.c)
 | |
| TARGET_LINK_LIBRARIES(async_example ${CLIENT_LIB})
 | |
| 
 | |
| SET_TARGET_PROPERTIES (mariadb-check mariadb-dump mariadb-import mariadb-upgrade mariadb-show mariadb-slap mariadb-plugin async_example
 | |
| PROPERTIES HAS_CXX TRUE)
 | |
| 
 | |
| FOREACH(t mariadb mariadb-test mariadb-check mariadb-dump mariadb-import mariadb-upgrade mariadb-show mariadb-plugin mariadb-binlog
 | |
|   mariadb-admin mariadb-slap async_example)
 | |
|   ADD_DEPENDENCIES(${t} GenError ${CLIENT_LIB})
 | |
| ENDFOREACH()
 | |
| 
 | |
| ADD_DEFINITIONS(-DHAVE_DLOPEN)
 | |
| IF(WITH_UNIT_TESTS)
 | |
|   ADD_SUBDIRECTORY(${PROJECT_SOURCE_DIR}/unittest/client ${PROJECT_BINARY_DIR}/unittest/client)
 | |
| ENDIF()
 |