summaryrefslogtreecommitdiff
path: root/mysql-test/r/date_formats.result
diff options
context:
space:
mode:
authorunknown <gvb@phoenix.(none)>2006-01-16 15:46:37 +0100
committerunknown <gvb@phoenix.(none)>2006-01-16 15:46:37 +0100
commite5f077f79a7872147a8858d353060ee08ffa5dcd (patch)
treee2e6418d1270944554ad7bde49f79671fcd01cd2 /mysql-test/r/date_formats.result
parent37b104b8ec45d842831c4854a3ddb3443c7bc642 (diff)
downloadmariadb-git-e5f077f79a7872147a8858d353060ee08ffa5dcd.tar.gz
date_formats.test:
fix for bug #15828 after review doing val_str now before testing of null value secures the function for null values returned by dynamic functions - the fix before was incomplete andy covered constant null values mysql-test/t/date_formats.test: fix for bug #15828 after review doing val_str now before testing of null value secures the function for null values returned by dynamic functions - the fix before was incomplete andy covered constant null values
Diffstat (limited to 'mysql-test/r/date_formats.result')
-rw-r--r--mysql-test/r/date_formats.result3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/date_formats.result b/mysql-test/r/date_formats.result
index b2dc1f7a67b..014eeed27e7 100644
--- a/mysql-test/r/date_formats.result
+++ b/mysql-test/r/date_formats.result
@@ -470,3 +470,6 @@ NULL
select str_to_date( NULL, 1 );
str_to_date( NULL, 1 )
NULL
+select str_to_date( 1, IF(1=1,NULL,NULL) );
+str_to_date( 1, IF(1=1,NULL,NULL) )
+NULL