mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
Fixed issues found by buildbot
- MDEV-11621 rpl.rpl_gtid_stop_start fails sporadically in buildbot - MDEV-11620 rpl.rpl_upgrade_master_info fails sporadically in buildbot The issue above was probably that the build machine was overworked and the shutdown took longer than 30 resp 10 seconds, which caused MyISAM tables to be marked as crashed. Fixed by flushing myisam tables before doing a forced shutdown/kill. I also increased timeout for forced shutdown from 10 seconds to 60 seconds to fix other possible issues on slow machines. Fixed also some compiler warnings
This commit is contained in:
parent
1afb17047a
commit
1628a2ae27
11 changed files with 34 additions and 15 deletions
2
storage/mroonga/vendor/groonga/lib/proc.c
vendored
2
storage/mroonga/vendor/groonga/lib/proc.c
vendored
|
|
@ -713,7 +713,7 @@ grn_select_drilldown(grn_ctx *ctx, grn_obj *table,
|
|||
{
|
||||
uint32_t i;
|
||||
for (i = 0; i < n_keys; i++) {
|
||||
grn_table_group_result g = {NULL, 0, 0, 1, GRN_TABLE_GROUP_CALC_COUNT, 0};
|
||||
grn_table_group_result g = {NULL, 0, 0, 1, GRN_TABLE_GROUP_CALC_COUNT, 0, 0 ,0};
|
||||
uint32_t n_hits;
|
||||
int offset;
|
||||
int limit;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue