mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
Fixed buildbot warnings
mysql-test/suite/maria/t/compat_aliases-master.opt: Fixed wrong limit storage/example/ha_example.cc: Fixed compiler warning
This commit is contained in:
parent
c0311edfb9
commit
ef841d4c87
2 changed files with 2 additions and 3 deletions
|
|
@ -1 +1 @@
|
|||
--maria-max-sort-file-size=100M --aria-repair-threads=10000
|
||||
--maria-max-sort-file-size=100M --aria-repair-threads=100
|
||||
|
|
|
|||
|
|
@ -947,7 +947,6 @@ bool ha_example::check_if_incompatible_data(HA_CREATE_INFO *info,
|
|||
uint table_changes)
|
||||
{
|
||||
ha_table_option_struct *param_old, *param_new;
|
||||
uint i;
|
||||
DBUG_ENTER("ha_example::check_if_incompatible_data");
|
||||
/*
|
||||
This example shows how custom engine specific table and field
|
||||
|
|
@ -978,7 +977,7 @@ bool ha_example::check_if_incompatible_data(HA_CREATE_INFO *info,
|
|||
DBUG_RETURN(COMPATIBLE_DATA_NO);
|
||||
|
||||
#ifndef DBUG_OFF
|
||||
for (i= 0; i < table->s->fields; i++)
|
||||
for (uint i= 0; i < table->s->fields; i++)
|
||||
{
|
||||
ha_field_option_struct *f_old, *f_new;
|
||||
f_old= table->s->field[i]->option_struct;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue