1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Post-merge fixes

This commit is contained in:
unknown
2005-10-19 12:41:30 +04:00
parent 8698ffc968
commit c5f9e201eb
2 changed files with 2 additions and 4 deletions

View File

@ -1401,7 +1401,7 @@ uint get_index_for_order(TABLE *table, ORDER *order, ha_rows limit)
if (!ord->asc)
return MAX_KEY;
for (idx= 0; idx < table->keys; idx++)
for (idx= 0; idx < table->s->keys; idx++)
{
if (!(table->keys_in_use_for_query.is_set(idx)))
continue;