mirror of
https://github.com/MariaDB/server.git
synced 2026-05-08 08:04:29 +02:00
ha_partition should skip ndb specific flags used by sql apply thread to signal idempotency behaviour
This commit is contained in:
parent
4b6ac944fe
commit
104f2c0c99
1 changed files with 9 additions and 0 deletions
|
|
@ -4709,6 +4709,15 @@ int ha_partition::extra(enum ha_extra_function operation)
|
|||
m_extra_cache_size= 0;
|
||||
DBUG_RETURN(loop_extra(operation));
|
||||
}
|
||||
case HA_EXTRA_IGNORE_NO_KEY:
|
||||
case HA_EXTRA_NO_IGNORE_NO_KEY:
|
||||
{
|
||||
/*
|
||||
Ignore as these are specific to NDB for handling
|
||||
idempotency
|
||||
*/
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
/* Temporary crash to discover what is wrong */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue