You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-674 Fix subquery in UPDATE
When some subquery changes were made over a year ago the flag to state that an UPDATE subquery was not constant data was accidentally commented out. This brings it back in again.
This commit is contained in:
@ -1048,8 +1048,8 @@ uint32_t doUpdateDelete(THD *thd)
|
||||
}
|
||||
else if ( value->type() == Item::SUBSELECT_ITEM )
|
||||
{
|
||||
// isFromCol = true;
|
||||
// columnAssignmentPtr->fFromCol = true;
|
||||
isFromCol = true;
|
||||
columnAssignmentPtr->fFromCol = true;
|
||||
// Item_field* setIt = reinterpret_cast<Item_field*> (value);
|
||||
// string sectableName = string(setIt->table_name);
|
||||
// string secschemaName = string(setIt->db_name);
|
||||
|
Reference in New Issue
Block a user