summaryrefslogtreecommitdiff
path: root/sql/sql_help.cc
diff options
context:
space:
mode:
authormonty@mysql.com <>2005-03-16 16:11:01 +0200
committermonty@mysql.com <>2005-03-16 16:11:01 +0200
commit594ef41b2d981bac7dc18ffaaf3e78c970ae4d65 (patch)
tree91072764c1f84696f62c39d4e54fea6a1c35c516 /sql/sql_help.cc
parent8e54dece315d7e96ce2e4eccf01adfabe660a63a (diff)
downloadmariadb-git-594ef41b2d981bac7dc18ffaaf3e78c970ae4d65.tar.gz
Cleanup during reviews
Removed some optional arguments Fixed portability problem in federated tests
Diffstat (limited to 'sql/sql_help.cc')
-rw-r--r--sql/sql_help.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_help.cc b/sql/sql_help.cc
index f5490da7e85..fa3e2070a28 100644
--- a/sql/sql_help.cc
+++ b/sql/sql_help.cc
@@ -562,7 +562,7 @@ SQL_SELECT *prepare_simple_select(THD *thd, Item *cond, TABLE_LIST *tables,
/* Assume that no indexes cover all required fields */
table->used_keys.clear_all();
- SQL_SELECT *res= make_select(table,0,0,cond,error);
+ SQL_SELECT *res= make_select(table, 0, 0, cond, 0, error);
if (*error || (res && res->check_quick(thd, 0, HA_POS_ERROR)) ||
(res->quick && res->quick->reset()))
{