mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fix of fail of period.updtae with ps protocol.
This commit is contained in:
@ -181,6 +181,11 @@ static bool check_fields(THD *thd, TABLE_LIST *table, List<Item> &items,
|
|||||||
|
|
||||||
if (table->has_period())
|
if (table->has_period())
|
||||||
{
|
{
|
||||||
|
if (table->is_view_or_derived())
|
||||||
|
{
|
||||||
|
my_error(ER_IT_IS_A_VIEW, MYF(0), table->table_name.str);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
DBUG_ASSERT(thd->lex->sql_command == SQLCOM_UPDATE);
|
DBUG_ASSERT(thd->lex->sql_command == SQLCOM_UPDATE);
|
||||||
for (List_iterator_fast<Item> it(items); (item=it++);)
|
for (List_iterator_fast<Item> it(items); (item=it++);)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user