Date: Sat, 22 Nov 2014 18:46:05 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373088 - in head/databases: mariadb55-client mariadb55-client/files mariadb55-server mariadb55-server/files Message-ID: <201411221846.sAMIk5Uf029151@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Sat Nov 22 18:46:05 2014 New Revision: 373088 URL: https://svnweb.freebsd.org/changeset/ports/373088 QAT: https://qat.redports.org/buildarchive/r373088/ Log: databases/mariadb55-(client,server): Upgrade version 5.5.39 => 5.5.40 PR: 194434 PR: 194435 Submitted by: Bernard Spil Approved by: maintainer timeout (Ukraine) Modified: head/databases/mariadb55-client/Makefile head/databases/mariadb55-client/files/patch-CMakeLists.txt head/databases/mariadb55-client/files/patch-cmake__jemalloc.cmake head/databases/mariadb55-client/files/patch-libservices_CMakeLists.txt head/databases/mariadb55-client/files/patch-scripts_mysql_config.sh head/databases/mariadb55-client/files/patch-support-files_CMakeLists.txt head/databases/mariadb55-server/Makefile head/databases/mariadb55-server/distinfo head/databases/mariadb55-server/files/patch-cmake__jemalloc.cmake head/databases/mariadb55-server/pkg-plist Modified: head/databases/mariadb55-client/Makefile ============================================================================== --- head/databases/mariadb55-client/Makefile Sat Nov 22 18:44:55 2014 (r373087) +++ head/databases/mariadb55-client/Makefile Sat Nov 22 18:46:05 2014 (r373088) @@ -11,7 +11,10 @@ FILESDIR= ${.CURDIR}/files PATCHDIR= ${.CURDIR}/files PLIST= ${.CURDIR}/pkg-plist -CONFLICTS_INSTALL= mysql[0-9][0-9]-client-* mariadb[0-46-9][0-9]-client-* mariadb5.[0-46-9]-client-* percona[0-9][0-9]-client-* +CONFLICTS_INSTALL= mysql*-client-* \ + mariadb1[0-9][0-9]-client-* \ + mariadb5[0-46-9]-client-* \ + percona*-client-* CMAKE_ARGS+= -DWITHOUT_SERVER=1 Modified: head/databases/mariadb55-client/files/patch-CMakeLists.txt ============================================================================== --- head/databases/mariadb55-client/files/patch-CMakeLists.txt Sat Nov 22 18:44:55 2014 (r373087) +++ head/databases/mariadb55-client/files/patch-CMakeLists.txt Sat Nov 22 18:46:05 2014 (r373088) @@ -1,5 +1,5 @@ ---- CMakeLists.txt.orig 2014-08-08 03:08:33.378366450 +0300 -+++ CMakeLists.txt 2014-08-08 03:10:04.225360039 +0300 +--- CMakeLists.txt.orig 2014-10-08 15:19:53.000000000 +0200 ++++ CMakeLists.txt 2014-10-17 21:36:43.000000000 +0200 @@ -411,28 +411,8 @@ ADD_SUBDIRECTORY(extra) ADD_SUBDIRECTORY(libservices) @@ -44,8 +44,8 @@ +IF(FALSE) INSTALL_DOCUMENTATION(README COPYING COPYING.LESSER EXCEPTIONS-CLIENT COMPONENT Readme) - INSTALL_DOCUMENTATION(${CMAKE_BINARY_DIR}/Docs/INFO_SRC -@@ -484,6 +464,7 @@ + +@@ -487,6 +467,7 @@ IF(UNIX) INSTALL_DOCUMENTATION(Docs/INSTALL-BINARY COMPONENT Readme) ENDIF() Modified: head/databases/mariadb55-client/files/patch-cmake__jemalloc.cmake ============================================================================== --- head/databases/mariadb55-client/files/patch-cmake__jemalloc.cmake Sat Nov 22 18:44:55 2014 (r373087) +++ head/databases/mariadb55-client/files/patch-cmake__jemalloc.cmake Sat Nov 22 18:46:05 2014 (r373088) @@ -1,14 +1,16 @@ ---- cmake/jemalloc.cmake.orig 2013-09-20 00:34:22.000000000 +0200 -+++ cmake/jemalloc.cmake 2013-09-27 22:46:05.791110010 +0200 -@@ -37,9 +37,9 @@ - SET(WITH_JEMALLOC "no") - ENDIF() - IF(WITH_JEMALLOC STREQUAL "system" OR WITH_JEMALLOC STREQUAL "yes") -- CHECK_LIBRARY_EXISTS(jemalloc malloc_stats_print "" HAVE_JEMALLOC) +--- cmake/jemalloc.cmake.orig 2014-10-08 15:19:51.000000000 +0200 ++++ cmake/jemalloc.cmake 2014-11-16 20:27:50.032638191 +0100 +@@ -22,11 +22,11 @@ + SET(libname jemalloc) + ENDIF() + +- CHECK_LIBRARY_EXISTS(${libname} malloc_stats_print "" HAVE_JEMALLOC) + CHECK_LIBRARY_EXISTS(c malloc_stats_print "" HAVE_JEMALLOC) + SET(CMAKE_REQUIRED_LIBRARIES) + IF (HAVE_JEMALLOC) -- SET(LIBJEMALLOC jemalloc) +- SET(LIBJEMALLOC ${libname}) + SET(LIBJEMALLOC c) - ELSEIF (WITH_JEMALLOC STREQUAL "system") - MESSAGE(FATAL_ERROR "system jemalloc is not found") - ELSEIF (WITH_JEMALLOC STREQUAL "yes") + ELSEIF (NOT WITH_JEMALLOC STREQUAL "auto") + MESSAGE(FATAL_ERROR "${libname} is not found") + ENDIF() Modified: head/databases/mariadb55-client/files/patch-libservices_CMakeLists.txt ============================================================================== --- head/databases/mariadb55-client/files/patch-libservices_CMakeLists.txt Sat Nov 22 18:44:55 2014 (r373087) +++ head/databases/mariadb55-client/files/patch-libservices_CMakeLists.txt Sat Nov 22 18:46:05 2014 (r373088) @@ -1,7 +1,7 @@ ---- libservices/CMakeLists.txt.orig 2012-11-28 17:49:47.000000000 +0200 -+++ libservices/CMakeLists.txt 2012-12-23 17:32:35.000000000 +0200 -@@ -24,4 +24,6 @@ - debug_sync_service.c) +--- libservices/CMakeLists.txt.orig 2014-10-08 15:19:52.000000000 +0200 ++++ libservices/CMakeLists.txt 2014-10-17 21:47:48.000000000 +0200 +@@ -26,4 +26,6 @@ + logger_service.c) ADD_CONVENIENCE_LIBRARY(mysqlservices ${MYSQLSERVICES_SOURCES}) +IF(FALSE) Modified: head/databases/mariadb55-client/files/patch-scripts_mysql_config.sh ============================================================================== --- head/databases/mariadb55-client/files/patch-scripts_mysql_config.sh Sat Nov 22 18:44:55 2014 (r373087) +++ head/databases/mariadb55-client/files/patch-scripts_mysql_config.sh Sat Nov 22 18:46:05 2014 (r373088) @@ -1,6 +1,6 @@ ---- scripts/mysql_config.sh.orig 2014-04-15 14:02:39.000000000 +0300 -+++ scripts/mysql_config.sh 2014-05-16 19:08:41.000000000 +0300 -@@ -108,8 +108,11 @@ +--- scripts/mysql_config.sh.orig 2014-10-17 21:44:16.000000000 +0200 ++++ scripts/mysql_config.sh 2014-10-17 21:54:16.000000000 +0200 +@@ -109,8 +109,11 @@ # We intentionally add a space to the beginning and end of lib strings, simplifies replace later libs=" $ldflags -L$pkglibdir @RPATH_OPTION@ -lmysqlclient @ZLIB_DEPS@ @NON_THREADED_LIBS@" libs="$libs @openssl_libs@ @STATIC_NSS_FLAGS@ " Modified: head/databases/mariadb55-client/files/patch-support-files_CMakeLists.txt ============================================================================== --- head/databases/mariadb55-client/files/patch-support-files_CMakeLists.txt Sat Nov 22 18:44:55 2014 (r373087) +++ head/databases/mariadb55-client/files/patch-support-files_CMakeLists.txt Sat Nov 22 18:46:05 2014 (r373088) @@ -1,5 +1,5 @@ ---- support-files/CMakeLists.txt.orig 2014-06-13 13:36:52.080474738 +0300 -+++ support-files/CMakeLists.txt 2014-06-13 13:50:59.537282325 +0300 +--- support-files/CMakeLists.txt.orig 2014-10-08 15:19:53.000000000 +0200 ++++ support-files/CMakeLists.txt 2014-10-17 22:34:28.000000000 +0200 @@ -41,15 +41,18 @@ SET(inst_location ${INSTALL_SUPPORTFILESDIR}) ENDIF() @@ -19,7 +19,7 @@ FOREACH(script mysqld_multi.server mysql-log-rotate binary-configure) CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${script}.sh ${CMAKE_CURRENT_BINARY_DIR}/${script} @ONLY ) -@@ -67,8 +70,10 @@ +@@ -69,8 +72,10 @@ INSTALL(FILES magic DESTINATION ${inst_location} COMPONENT SupportFiles) INSTALL(DIRECTORY RHEL4-SElinux/ DESTINATION ${inst_location}/SELinux/RHEL4 COMPONENT SupportFiles) ENDIF() @@ -30,19 +30,11 @@ CONFIGURE_FILE(MySQL-shared-compat.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/MySQL-shared-compat.spec @ONLY) CONFIGURE_FILE(mysql.spec.sh ${CMAKE_CURRENT_BINARY_DIR}/mysql.spec @ONLY) -@@ -92,6 +97,7 @@ +@@ -94,6 +99,7 @@ DESTINATION ${inst_location} COMPONENT SupportFiles PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) -+ ++ ENDIF() IF (INSTALL_SYSCONFDIR) INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/mysql-log-rotate DESTINATION ${INSTALL_SYSCONFDIR}/logrotate.d -@@ -101,6 +107,7 @@ - RENAME mysql COMPONENT SupportFiles - PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ - GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) -+ ENDIF() - - INSTALL(FILES rpm/my.cnf DESTINATION ${INSTALL_SYSCONFDIR} - COMPONENT Common) Modified: head/databases/mariadb55-server/Makefile ============================================================================== --- head/databases/mariadb55-server/Makefile Sat Nov 22 18:44:55 2014 (r373087) +++ head/databases/mariadb55-server/Makefile Sat Nov 22 18:46:05 2014 (r373088) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 5.5.39 +PORTVERSION= 5.5.40 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/mariadb/${PORTNAME}-${PORTVERSION}/source/ \ http://mirrors.supportex.net/mariadb/${PORTNAME}-${PORTVERSION}/source/ \ @@ -40,7 +40,7 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc -DINSTALL_MANDIR="man" \ -DINSTALL_MYSQLDATADIR="/var/db/mysql" \ -DINSTALL_MYSQLSHAREDIR="share/mysql" \ - -DINSTALL_MYSQLTESTDIR="share/mysql/tests" \ + -DINSTALL_MYSQLTESTDIR= \ -DINSTALL_PLUGINDIR="lib/mysql/plugin" \ -DINSTALL_SBINDIR="libexec" \ -DINSTALL_SCRIPTDIR="bin" \ @@ -110,7 +110,10 @@ CMAKE_ARGS+= -DWITH_FAST_MUTEXES=1 USE_MYSQL= yes WANT_MYSQL_VER= 55m -CONFLICTS_INSTALL= mysql[0-9][0-9]-server-* mariadb[0-46-9][0-9]-server-* mariadb5.[0-46-9]-server-* percona[0-9][0-9]-server-* +CONFLICTS_INSTALL= mysql*-server-* \ + mariadb1[0-9][0-9]-server-* \ + mariadb5[0-46-9]-server-* \ + percona*-server-* USE_RC_SUBR= mysql-server Modified: head/databases/mariadb55-server/distinfo ============================================================================== --- head/databases/mariadb55-server/distinfo Sat Nov 22 18:44:55 2014 (r373087) +++ head/databases/mariadb55-server/distinfo Sat Nov 22 18:46:05 2014 (r373088) @@ -1,2 +1,2 @@ -SHA256 (mariadb-5.5.39.tar.gz) = cb850865ab55ce5f01c99a612cc75b76ead5d75adfa75a606f453d32f9089d14 -SIZE (mariadb-5.5.39.tar.gz) = 45084762 +SHA256 (mariadb-5.5.40.tar.gz) = cbde17f4a31483143490def6fcce33310ebae49eafe92dc4ada0e7227202415a +SIZE (mariadb-5.5.40.tar.gz) = 44745240 Modified: head/databases/mariadb55-server/files/patch-cmake__jemalloc.cmake ============================================================================== --- head/databases/mariadb55-server/files/patch-cmake__jemalloc.cmake Sat Nov 22 18:44:55 2014 (r373087) +++ head/databases/mariadb55-server/files/patch-cmake__jemalloc.cmake Sat Nov 22 18:46:05 2014 (r373088) @@ -1,14 +1,16 @@ ---- cmake/jemalloc.cmake.orig 2013-09-20 00:34:22.000000000 +0200 -+++ cmake/jemalloc.cmake 2013-09-27 22:46:05.791110010 +0200 -@@ -37,9 +37,9 @@ - SET(WITH_JEMALLOC "no") - ENDIF() - IF(WITH_JEMALLOC STREQUAL "system" OR WITH_JEMALLOC STREQUAL "yes") -- CHECK_LIBRARY_EXISTS(jemalloc malloc_stats_print "" HAVE_JEMALLOC) +--- cmake/jemalloc.cmake.orig 2014-10-08 15:19:51.000000000 +0200 ++++ cmake/jemalloc.cmake 2014-11-16 20:27:50.032638191 +0100 +@@ -22,11 +22,11 @@ + SET(libname jemalloc) + ENDIF() + +- CHECK_LIBRARY_EXISTS(${libname} malloc_stats_print "" HAVE_JEMALLOC) + CHECK_LIBRARY_EXISTS(c malloc_stats_print "" HAVE_JEMALLOC) + SET(CMAKE_REQUIRED_LIBRARIES) + IF (HAVE_JEMALLOC) -- SET(LIBJEMALLOC jemalloc) +- SET(LIBJEMALLOC ${libname}) + SET(LIBJEMALLOC c) - ELSEIF (WITH_JEMALLOC STREQUAL "system") - MESSAGE(FATAL_ERROR "system jemalloc is not found") - ELSEIF (WITH_JEMALLOC STREQUAL "yes") + ELSEIF (NOT WITH_JEMALLOC STREQUAL "auto") + MESSAGE(FATAL_ERROR "${libname} is not found") + ENDIF() Modified: head/databases/mariadb55-server/pkg-plist ============================================================================== --- head/databases/mariadb55-server/pkg-plist Sat Nov 22 18:44:55 2014 (r373087) +++ head/databases/mariadb55-server/pkg-plist Sat Nov 22 18:46:05 2014 (r373088) @@ -36,6 +36,7 @@ lib/mysql/libmysqld.so.18 lib/mysql/plugin/adt_null.so lib/mysql/plugin/auth_0x0100.so lib/mysql/plugin/auth_pam.so +lib/mysql/plugin/auth_socket.so lib/mysql/plugin/auth_test_plugin.so lib/mysql/plugin/daemon_example.ini lib/mysql/plugin/dialog.so @@ -157,146 +158,4 @@ man/man8/mysqld.8.gz %%DATADIR%%/slovak/errmsg.sys %%DATADIR%%/spanish/errmsg.sys %%DATADIR%%/swedish/errmsg.sys -%%DATADIR%%/tests/plugin/example/README -%%DATADIR%%/tests/plugin/example/mtr/suite.pm -%%DATADIR%%/tests/plugin/example/mtr/t/combs.combinations -%%DATADIR%%/tests/plugin/example/mtr/t/inc.inc -%%DATADIR%%/tests/plugin/example/mtr/t/newcomb.combinations -%%DATADIR%%/tests/plugin/example/mtr/t/over.result -%%DATADIR%%/tests/plugin/example/mtr/t/over.test -%%DATADIR%%/tests/plugin/example/mtr/t/self.result -%%DATADIR%%/tests/plugin/example/mtr/t/self.test -%%DATADIR%%/tests/plugin/example/mtr/t/source.result -%%DATADIR%%/tests/plugin/example/mtr/t/test2,c2.result -%%DATADIR%%/tests/plugin/example/mtr/t/test2.opt -%%DATADIR%%/tests/plugin/example/mtr/t/test2.rdiff -%%DATADIR%%/tests/plugin/example/mtr/t/testsh-master.sh -%%DATADIR%%/tests/plugin/heap/mtr2/README -%%DATADIR%%/tests/plugin/heap/mtr2/my.cnf -%%DATADIR%%/tests/plugin/innobase/storage_engine/alter_tablespace.opt -%%DATADIR%%/tests/plugin/innobase/storage_engine/autoinc_secondary.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/cache_index.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/checksum_table_live.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/define_engine.inc -%%DATADIR%%/tests/plugin/innobase/storage_engine/disabled.def -%%DATADIR%%/tests/plugin/innobase/storage_engine/fulltext_search.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/index_enable_disable.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/index_type_hash.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/insert_delayed.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/lock_concurrent.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/optimize_table.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/repair_table.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/suite.opt -%%DATADIR%%/tests/plugin/innobase/storage_engine/tbl_opt_data_index_dir.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/tbl_opt_insert_method.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/tbl_opt_key_block_size.opt -%%DATADIR%%/tests/plugin/innobase/storage_engine/tbl_opt_row_format.opt -%%DATADIR%%/tests/plugin/innobase/storage_engine/tbl_opt_row_format.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/tbl_opt_union.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/type_char_indexes.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/type_float_indexes.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/type_spatial_indexes.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/vcol.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/parts/checksum_table.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/parts/create_table.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/parts/optimize_table.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/parts/repair_table.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/parts/suite.opt -%%DATADIR%%/tests/plugin/innobase/storage_engine/trx/cons_snapshot_serializable.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/trx/level_read_committed.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/trx/level_read_uncommitted.rdiff -%%DATADIR%%/tests/plugin/innobase/storage_engine/trx/suite.opt -%%DATADIR%%/tests/plugin/myisam/mtr2/README -%%DATADIR%%/tests/plugin/myisam/mtr2/overlay.inc -%%DATADIR%%/tests/plugin/myisam/mtr2/single.rdiff -%%DATADIR%%/tests/plugin/myisam/mtr2/suite.opt -%%DATADIR%%/tests/plugin/myisam/mtr2/suite.pm -%%DATADIR%%/tests/plugin/myisam/storage_engine/alter_tablespace.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/check_table.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/define_engine.inc -%%DATADIR%%/tests/plugin/myisam/storage_engine/foreign_keys.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/index_type_hash.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/show_engine.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/tbl_opt_insert_method.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/tbl_opt_union.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/cons_snapshot_repeatable_read.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/cons_snapshot_serializable.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/delete.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/insert.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/level_read_committed.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/level_read_uncommitted.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/level_repeatable_read.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/level_serializable.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/select_for_update.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/select_lock_in_share_mode.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/update.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/xa.rdiff -%%DATADIR%%/tests/plugin/myisam/storage_engine/trx/xa_recovery.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/alter_table.inc -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/alter_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/alter_tablespace.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/analyze_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/autoincrement.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/cache_index.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/checksum_table_live.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/cleanup_engine.inc -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/create_table.inc -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/create_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/define_engine.inc -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/disabled.def -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/foreign_keys.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/fulltext_search.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/handler.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/index.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/index_enable_disable.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/index_type_btree.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/index_type_hash.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/insert_delayed.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/lock.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/optimize_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/repair_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/show_engine.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_ai.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_avg_row_length.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_checksum.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_connection.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_data_index_dir.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_delay_key_write.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_insert_method.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_key_block_size.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_max_rows.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_min_rows.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_pack_keys.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_password.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_row_format.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_opt_union.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_standard_opts.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/tbl_temporary.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/truncate_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/type_char_indexes.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/type_float_indexes.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/type_spatial.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/type_spatial_indexes.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/vcol.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/parts/alter_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/parts/analyze_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/parts/check_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/parts/checksum_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/parts/create_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/parts/optimize_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/parts/repair_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/parts/truncate_table.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/cons_snapshot_repeatable_read.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/cons_snapshot_serializable.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/delete.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/insert.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/level_read_committed.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/level_read_uncommitted.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/level_repeatable_read.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/level_serializable.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/select_for_update.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/select_lock_in_share_mode.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/update.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/xa.rdiff -%%DATADIR%%/tests/plugin/myisammrg/storage_engine/trx/xa_recovery.rdiff %%DATADIR%%/ukrainian/errmsg.sys
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411221846.sAMIk5Uf029151>