diff options
author | Ramil Kalimullin <ramil@mysql.com> | 2010-10-13 08:51:37 +0400 |
---|---|---|
committer | Ramil Kalimullin <ramil@mysql.com> | 2010-10-13 08:51:37 +0400 |
commit | a9ac3cde4952b6c3525fc428add794ecaa4228a0 (patch) | |
tree | 8e5e079794883d2845d703a8704db6751a1abb02 /mysql-test/r/func_misc.result | |
parent | b265bd106fc0b31635a8cb162d073588aca35006 (diff) | |
parent | 9ef7eac2c0a27cbacbd5c1499119f7c4b58a48fe (diff) | |
download | mariadb-git-a9ac3cde4952b6c3525fc428add794ecaa4228a0.tar.gz |
Merge.
Diffstat (limited to 'mysql-test/r/func_misc.result')
-rw-r--r-- | mysql-test/r/func_misc.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/func_misc.result b/mysql-test/r/func_misc.result index 85448a258e4..9ea02d5a9e3 100644 --- a/mysql-test/r/func_misc.result +++ b/mysql-test/r/func_misc.result @@ -375,4 +375,11 @@ GREATEST(a, (SELECT b FROM t1 LIMIT 1)) 3 1 DROP TABLE t1; +SELECT INET_NTOA(0); +INET_NTOA(0) +0.0.0.0 +SELECT '1' IN ('1', INET_NTOA(0)); +'1' IN ('1', INET_NTOA(0)) +1 End of 5.1 tests +End of tests |