mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
Fixed problems found by buildbot:
- Better error from check_slave_param - Better error message from TokuDB if it can't be compiled. - Marked rpl_mixed_drop_create_temp_table and rpl_stm_drop_create_temp_table as big tests to stop timeout failures on power8 - Added sync_slave_with_master to semisync_future-7591 to ensure that slave is up to date with master before calling rpl_end. - Disabled compiler warnings from connect and mroonga and on MacOSX. Mroonga: - Fixed bug when testing if file is a normal file that can be deleted - Marked a lot of date and datetime test to not run on macosx. This is because mktime() can't handle negative years and this restricts mroonga so that it can only store dates after the year 1900.
This commit is contained in:
parent
8254f054f8
commit
654547b5b4
17 changed files with 41 additions and 2 deletions
|
|
@ -8765,7 +8765,7 @@ void ha_mroonga::remove_related_files(const char *base_path)
|
|||
if (stat(entry->d_name, &file_status) != 0) {
|
||||
continue;
|
||||
}
|
||||
if (!((file_status.st_mode & S_IFMT) && S_IFREG)) {
|
||||
if (!((file_status.st_mode & S_IFMT) & S_IFREG)) {
|
||||
continue;
|
||||
}
|
||||
if (strncmp(entry->d_name, base_path, base_path_length) == 0) {
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
--source ../../include/mroonga/skip_freebsd.inc
|
||||
--source ../../include/mroonga/skip_osx.inc
|
||||
--source ../../include/mroonga/have_64bit.inc
|
||||
--source ../../include/mroonga/have_mroonga.inc
|
||||
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
--source ../../include/mroonga/skip_freebsd.inc
|
||||
--source ../../include/mroonga/skip_osx.inc
|
||||
--source ../../include/mroonga/have_64bit.inc
|
||||
--source ../../include/mroonga/have_version_56_or_later.inc
|
||||
--source ../../include/mroonga/have_mroonga.inc
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
--source ../../include/mroonga/have_64bit.inc
|
||||
--source ../../include/mroonga/skip_freebsd.inc
|
||||
--source ../../include/mroonga/skip_osx.inc
|
||||
--source ../../include/mroonga/have_mroonga.inc
|
||||
|
||||
--disable_warnings
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
--source ../../include/mroonga/skip_freebsd.inc
|
||||
--source ../../include/mroonga/skip_osx.inc
|
||||
--source ../../include/mroonga/have_64bit.inc
|
||||
--source ../../include/mroonga/have_mroonga.inc
|
||||
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
--source ../../include/mroonga/have_64bit.inc
|
||||
--source ../../include/mroonga/skip_freebsd.inc
|
||||
--source ../../include/mroonga/skip_osx.inc
|
||||
--source ../../include/mroonga/have_mroonga.inc
|
||||
|
||||
--disable_warnings
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
--source ../../include/mroonga/skip_freebsd.inc
|
||||
--source ../../include/mroonga/skip_osx.inc
|
||||
--source ../../include/mroonga/have_64bit.inc
|
||||
--source ../../include/mroonga/have_mroonga.inc
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
--source ../../include/mroonga/skip_freebsd.inc
|
||||
--source ../../include/mroonga/skip_osx.inc
|
||||
--source ../../include/mroonga/have_64bit.inc
|
||||
--source ../../include/mroonga/have_mroonga.inc
|
||||
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
--source ../../include/mroonga/have_64bit.inc
|
||||
--source ../../include/mroonga/skip_freebsd.inc
|
||||
--source ../../include/mroonga/skip_osx.inc
|
||||
--source ../../include/mroonga/have_mroonga.inc
|
||||
|
||||
--disable_warnings
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
--source ../../include/mroonga/skip_freebsd.inc
|
||||
--source ../../include/mroonga/skip_osx.inc
|
||||
--source ../../include/mroonga/have_64bit.inc
|
||||
--source ../../include/mroonga/have_mroonga.inc
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
--source ../../include/mroonga/skip_freebsd.inc
|
||||
--source ../../include/mroonga/skip_osx.inc
|
||||
--source ../../include/mroonga/have_64bit.inc
|
||||
--source ../../include/mroonga/have_mroonga.inc
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue