summaryrefslogtreecommitdiff
path: root/mysql-test/t/date_formats.test
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/t/date_formats.test
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/t/date_formats.test')
-rw-r--r--mysql-test/t/date_formats.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/date_formats.test b/mysql-test/t/date_formats.test
index dd31f1509c0..78b4482a94a 100644
--- a/mysql-test/t/date_formats.test
+++ b/mysql-test/t/date_formats.test
@@ -274,5 +274,5 @@ drop table t1;
#
select str_to_date( 1, NULL );
select str_to_date( NULL, 1 );
-
+select str_to_date( 1, IF(1=1,NULL,NULL) );
# End of 4.1 tests