mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
Fixed typo. (Old code worked as both tested parts where 'bool', but not nice code..)
This commit is contained in:
parent
5407f511c2
commit
6f5f5b9491
1 changed files with 1 additions and 1 deletions
|
@ -10642,7 +10642,7 @@ create_tmp_table(THD *thd,TMP_TABLE_PARAM *param,List<Item> &fields,
|
|||
{
|
||||
cur_group->buff=(char*) group_buff;
|
||||
|
||||
if (maybe_null & !field->null_bit)
|
||||
if (maybe_null && !field->null_bit)
|
||||
{
|
||||
/*
|
||||
This can only happen in the unusual case where an outer join
|
||||
|
|
Loading…
Add table
Reference in a new issue