diff options
author | unknown <monty@donna.mysql.fi> | 2001-05-20 13:44:10 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.fi> | 2001-05-20 13:44:10 +0300 |
commit | 4698fbee511a7bb3fe54c70d2702e660406e82ea (patch) | |
tree | 8532a57156e7a4b944170b9636773fa774af470d /sql/sql_handler.cc | |
parent | fe983ca7b3eed46e8cda130ad24d86f2609afdfb (diff) | |
download | mariadb-git-4698fbee511a7bb3fe54c70d2702e660406e82ea.tar.gz |
New qsort implementation
sql/sql_handler.cc:
Fixed insert_fields usage
Diffstat (limited to 'sql/sql_handler.cc')
-rw-r--r-- | sql/sql_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_handler.cc b/sql/sql_handler.cc index d0ac2387a1c..3da9b96786d 100644 --- a/sql/sql_handler.cc +++ b/sql/sql_handler.cc @@ -104,7 +104,7 @@ int mysql_ha_read(THD *thd, TABLE_LIST *tables, List_iterator<Item> it(list); it++; - insert_fields(thd,tables,tables->name,&it); + insert_fields(thd,tables,tables->db,tables->name,&it); table->file->index_init(keyno); |