diff options
author | Hakan Kuecuekyilmaz <hakan@askmonty.org> | 2010-01-22 22:19:21 +0100 |
---|---|---|
committer | Hakan Kuecuekyilmaz <hakan@askmonty.org> | 2010-01-22 22:19:21 +0100 |
commit | 93089873623bb82cf5ca4c4cf1cf146796dd31dd (patch) | |
tree | 66ce0db9b416e64b32b1b608a45202ca44671206 /mysql-test/t/udf.test | |
parent | 159ff4c12c339ccd6c6d9386a2486a535b1e0932 (diff) | |
download | mariadb-git-93089873623bb82cf5ca4c4cf1cf146796dd31dd.tar.gz |
Fix for https://bugs.launchpad.net/maria/+bug/509795
Result of reverse_lookup("localhost") is system depended.
Therefore we disable the result of it.
Diffstat (limited to 'mysql-test/t/udf.test')
-rw-r--r-- | mysql-test/t/udf.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/udf.test b/mysql-test/t/udf.test index 4364b0c820e..642f77fd741 100644 --- a/mysql-test/t/udf.test +++ b/mysql-test/t/udf.test @@ -56,9 +56,9 @@ select reverse_lookup(); --disable_result_log select reverse_lookup("127.0.0.1"); select reverse_lookup(127,0,0,1); +select reverse_lookup("localhost"); --enable_result_log -select reverse_lookup("localhost"); --error ER_CANT_INITIALIZE_UDF select avgcost(); --error ER_CANT_INITIALIZE_UDF |