1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fixed failures in buildbot

mysql-test/suite/innodb_plugin/t/innodb_bug38231.test:
  Sometimes you get a timeout here; Disable the not fatal error message.
storage/xtradb/sync/sync0rw.c:
  Disable compiler warning
This commit is contained in:
Michael Widenius
2010-12-01 22:18:03 +02:00
parent e46d0aead0
commit 34fa79e9b1
2 changed files with 4 additions and 2 deletions

View File

@ -73,6 +73,7 @@ UNLOCK TABLES;
-- connection con2
-- reap
-- error 0, 1205
UNLOCK TABLES;
-- connection con3

View File

@ -247,10 +247,11 @@ rw_lock_create_func(
lock->mutex.cmutex_name = cmutex_name;
ut_d(lock->mutex.mutex_type = 1);
#else /* INNODB_RW_LOCKS_USE_ATOMICS */
#endif /* INNODB_RW_LOCKS_USE_ATOMICS */
#if defined(INNODB_RW_LOCKS_USE_ATOMICS) || !defined(UNIV_DEBUG)
(void) cfile_name;
(void) cline;
#endif /* INNODB_RW_LOCKS_USE_ATOMICS */
#endif
lock->lock_word = X_LOCK_DECR;
lock->waiters = 0;