diff options
author | Michael Widenius <monty@askmonty.org> | 2011-11-24 16:04:19 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2011-11-24 16:04:19 +0200 |
commit | d26aefb0775048128495eaab151ee4118f8f7afd (patch) | |
tree | ee82a015f1bf1c520a5510cbe40164833657c8f8 /sql/my_decimal.h | |
parent | 7b368e3810feda53fc0dbdf5bfe8863f82f0bbcc (diff) | |
download | mariadb-git-d26aefb0775048128495eaab151ee4118f8f7afd.tar.gz |
Fixes for build failuers found by buildbot
mysql-test/mysql-test-run.pl:
Rename MYSQLD -> MYSQLD_SIMPLE_CMD to avoid conflict with new MYSQLD variable from MySQL 5.1
mysql-test/r/innodb_file_format.result:
Remove old duplicated test
mysql-test/suite/pbxt/r/endspace.result:
Update test to last version
mysql-test/suite/pbxt/r/heap.result:
Removed heap test (not part of pbxt)
mysql-test/suite/pbxt/r/select_safe.result:
Updated results after error message change
mysql-test/suite/pbxt/r/view_grant.result:
Removed view test (not part of pbxt)
mysql-test/suite/pbxt/t/endspace.test:
Update test to last version
mysql-test/suite/pbxt/t/heap.test:
Removed heap test (not part of pbxt)
mysql-test/suite/pbxt/t/view_grant.test:
Removed view test (not part of pbxt)
mysql-test/t/innodb_file_format.test:
Remove old duplicated test
mysql-test/t/mysqld_option_err.test:
Use renamed variable
sql/my_decimal.h:
Fixed wrong define
storage/maria/ma_loghandler.c:
Fixed compiler warning
Diffstat (limited to 'sql/my_decimal.h')
-rw-r--r-- | sql/my_decimal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/my_decimal.h b/sql/my_decimal.h index 72692e54d35..845aecb972c 100644 --- a/sql/my_decimal.h +++ b/sql/my_decimal.h @@ -99,7 +99,7 @@ class my_decimal :public decimal_t To catch them, we allocate dummy fields around the buffer, and test that their values do not change. */ -#if !defined(DBUG_OFF) && defined(HAVE_valgrind) +#if !defined(DBUG_OFF) int foo1; #endif |