diff options
author | John H. Embretsen <john.embretsen@sun.com> | 2010-03-18 11:26:27 +0100 |
---|---|---|
committer | John H. Embretsen <john.embretsen@sun.com> | 2010-03-18 11:26:27 +0100 |
commit | b4537076808b939d3d6869ba31bf6c59f16fec0e (patch) | |
tree | bea2bec7c2280340c6bbd419a6c29a7881ae85e8 /mysql-test/r | |
parent | c92b9b7315c01e87b1099e7df182213a1d8ffa6f (diff) | |
download | mariadb-git-b4537076808b939d3d6869ba31bf6c59f16fec0e.tar.gz |
Bug#52060 - test udf fails on Snow Leopard
reverse DNS lookup of "localhost" returns "broadcasthost" on Snow Leopard, and NULL on most others.
Simply ignore the output, as this is not an essential part of UDF testing.
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/udf.result | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mysql-test/r/udf.result b/mysql-test/r/udf.result index 601b364fbbe..4104ca44e66 100644 --- a/mysql-test/r/udf.result +++ b/mysql-test/r/udf.result @@ -38,8 +38,6 @@ ERROR HY000: Can't initialize function 'reverse_lookup'; Wrong number of argumen select reverse_lookup("127.0.0.1"); select reverse_lookup(127,0,0,1); select reverse_lookup("localhost"); -reverse_lookup("localhost") -NULL select avgcost(); ERROR HY000: Can't initialize function 'avgcost'; wrong number of arguments: AVGCOST() requires two arguments select avgcost(100,23.76); |