Skip to content
Permalink
Browse files
bugfix: Item_cache_temporal::get_date() didn't set null_value
  • Loading branch information
vuvova committed Mar 14, 2018
1 parent 622115e commit 885edc4
Showing 1 changed file with 1 addition and 1 deletion.
@@ -9799,7 +9799,7 @@ bool Item_cache_temporal::get_date(MYSQL_TIME *ltime, ulonglong fuzzydate)
if (!has_value())
{
bzero((char*) ltime,sizeof(*ltime));
return 1;
return null_value= true;
}

unpack_time(value, ltime);

0 comments on commit 885edc4

Please sign in to comment.