diff options
author | cmiller@zippy.(none) <> | 2006-07-03 11:35:58 -0400 |
---|---|---|
committer | cmiller@zippy.(none) <> | 2006-07-03 11:35:58 -0400 |
commit | 6110a83a0e7843829c2927b3b0c3a375cae25077 (patch) | |
tree | 26ea19d61c67c7cded9c9c925281f64ddf51bc14 /mysql-test/r/udf.result | |
parent | ea794df45adcd876561c36ed26a5fa935668c58d (diff) | |
parent | d5ff4f68821c8c86e990149b5c289d7f32f5c09d (diff) | |
download | mariadb-git-6110a83a0e7843829c2927b3b0c3a375cae25077.tar.gz |
Merge zippy.(none):/home/cmiller/work/mysql/merge/mysql-5.0
into zippy.(none):/home/cmiller/work/mysql/merge/mysql-5.1
Diffstat (limited to 'mysql-test/r/udf.result')
-rw-r--r-- | mysql-test/r/udf.result | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/r/udf.result b/mysql-test/r/udf.result index 01aa8539262..d6b96bae8d4 100644 --- a/mysql-test/r/udf.result +++ b/mysql-test/r/udf.result @@ -76,6 +76,24 @@ call XXX2(); metaphon(testval) HL drop procedure xxx2; +CREATE TABLE bug19904(n INT, v varchar(10)); +INSERT INTO bug19904 VALUES (1,'one'),(2,'two'),(NULL,NULL),(3,'three'),(4,'four'); +SELECT myfunc_double(n) AS f FROM bug19904; +f +49.00 +50.00 +NULL +51.00 +52.00 +SELECT metaphon(v) AS f FROM bug19904; +f +ON +TW +NULL +0R +FR +DROP TABLE bug19904; +End of 5.0 tests. DROP FUNCTION metaphon; DROP FUNCTION myfunc_double; DROP FUNCTION myfunc_nonexist; |