1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Merge branch '10.11' into 11.0

This commit is contained in:
Sergei Golubchik
2023-12-19 09:32:57 +01:00
677 changed files with 27709 additions and 4975 deletions

View File

@@ -670,7 +670,7 @@ SQL_SELECT *prepare_simple_select(THD *thd, Item *cond,
SQL_SELECT *res= make_select(table, 0, 0, cond, 0, 0, error);
if (unlikely(!res) || unlikely(*error))
goto error;
(void) res->check_quick(thd, 0, HA_POS_ERROR);
(void) res->check_quick(thd, 0, HA_POS_ERROR, Item_func::BITMAP_ALL);
if (!res->quick || res->quick->reset() == 0)
return res;