1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

fix for message being sent in EXPLAIN ...

This commit is contained in:
Sinisa@sinisa.nasamreza.org
2002-11-18 20:58:04 +02:00
parent b9a671f267
commit 4cec1660da
2 changed files with 3 additions and 2 deletions

View File

@ -1078,7 +1078,7 @@ TABLE *open_table(THD *thd,const char *db,const char *table_name,
table->status=STATUS_NO_RECORD;
table->keys_in_use_for_query= table->keys_in_use;
table->used_keys= table->keys_for_keyread;
DBUG_ASSERT(table->key_read == 0);
// DBUG_ASSERT(table->key_read == 0); put in comment as this fails on EXPLAIN
DBUG_RETURN(table);
}