mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Added missing SSL library (Should be in source distribution)
Fixed compiler warnings (a lot of hidden variables detected by the Forte compiler) Added a lot of 'version_xxx' strings to 'show variables' Prevent copying of TMP_TABLE_PARAM (This caused core dump bug on Solaris) Fixed problem with printing sub selects to debug log
This commit is contained in:
@@ -1036,9 +1036,9 @@ bool select_dump::send_eof()
|
||||
return error;
|
||||
}
|
||||
|
||||
select_subselect::select_subselect(Item_subselect *item)
|
||||
select_subselect::select_subselect(Item_subselect *item_arg)
|
||||
{
|
||||
this->item=item;
|
||||
item= item_arg;
|
||||
}
|
||||
|
||||
bool select_singlerow_subselect::send_data(List<Item> &items)
|
||||
@@ -1229,3 +1229,14 @@ bool select_dumpvar::send_eof()
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
TMP_TABLE_PARAM
|
||||
****************************************************************************/
|
||||
|
||||
void TMP_TABLE_PARAM::init()
|
||||
{
|
||||
field_count= sum_func_count= func_count= hidden_field_count= 0;
|
||||
group_parts= group_length= group_null_parts= 0;
|
||||
quick_group= 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user