diff options
author | unknown <monty@mysql.com> | 2004-03-19 18:26:02 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-03-19 18:26:02 +0200 |
commit | 86ae07cd2477506513a47a8c0d7600f59422c7e1 (patch) | |
tree | 5293e5d127bc67405c2f7d9fcbab30e3fb6aa339 /mysql-test/t/func_math.test | |
parent | 6b465557670093b038cb3d2be930e6a036292192 (diff) | |
download | mariadb-git-86ae07cd2477506513a47a8c0d7600f59422c7e1.tar.gz |
Portability fixes
Fixed some wrong column specifications in mysql_fix_privilege_tables
mysql-test/mysql-test-run.sh:
Portability fix
mysql-test/r/func_math.result:
portability fix
mysql-test/r/rpl_error_ignored_table.result:
portability fix
mysql-test/t/func_math.test:
portability fix
mysql-test/t/rpl_error_ignored_table.test:
portability fix
scripts/mysql_fix_privilege_tables.sh:
func.name was not generated correctly
scripts/mysql_fix_privilege_tables.sql:
Fixed some wrong column specifications
Diffstat (limited to 'mysql-test/t/func_math.test')
-rw-r--r-- | mysql-test/t/func_math.test | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mysql-test/t/func_math.test b/mysql-test/t/func_math.test index 7057b0ca412..ca958253d14 100644 --- a/mysql-test/t/func_math.test +++ b/mysql-test/t/func_math.test @@ -33,6 +33,7 @@ SELECT ASIN(1.2-0.2); # Bug #3051 FLOOR returns invalid # -select floor(log(4)/log(2)); -select floor(log(8)/log(2)); -select floor(log(16)/log(2)); +# This can't be tested as it's not portable +#select floor(log(4)/log(2)); +#select floor(log(8)/log(2)); +#select floor(log(16)/log(2)); |