mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
MDEV-14008 Assertion failing: `!is_set() || (m_status == DA_OK_BULK && is_bulk_op())
This commit is contained in:
parent
9d76b27498
commit
c1e5fef05d
6 changed files with 37 additions and 7 deletions
|
|
@ -7274,7 +7274,7 @@ no_commit:
|
|||
table->next_number_field);
|
||||
|
||||
/* Get the value that MySQL attempted to store in the table.*/
|
||||
auto_inc = table->next_number_field->val_int();
|
||||
auto_inc = table->next_number_field->val_uint();
|
||||
|
||||
switch (error) {
|
||||
case DB_DUPLICATE_KEY:
|
||||
|
|
@ -7735,7 +7735,7 @@ ha_innobase::update_row(
|
|||
ulonglong auto_inc;
|
||||
ulonglong col_max_value;
|
||||
|
||||
auto_inc = table->next_number_field->val_int();
|
||||
auto_inc = table->next_number_field->val_uint();
|
||||
|
||||
/* We need the upper limit of the col type to check for
|
||||
whether we update the table autoinc counter or not. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue