diff options
author | serg@serg.mylan <> | 2003-10-24 22:44:48 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2003-10-24 22:44:48 +0200 |
commit | 6e17f4f20db21964b1a7802d9f942e0aef8a4d81 (patch) | |
tree | f568d21474173997b961d12647e250178e7a7942 /sql/opt_range.h | |
parent | d74ecc079f997221941f6631e1335a837469ed5c (diff) | |
download | mariadb-git-6e17f4f20db21964b1a7802d9f942e0aef8a4d81.tar.gz |
fixes to Bitmap class
Diffstat (limited to 'sql/opt_range.h')
-rw-r--r-- | sql/opt_range.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/opt_range.h b/sql/opt_range.h index b4d855c0faa..1c209dc7027 100644 --- a/sql/opt_range.h +++ b/sql/opt_range.h @@ -128,7 +128,7 @@ class SQL_SELECT :public Sql_alloc { SQL_SELECT(); ~SQL_SELECT(); bool check_quick(THD *thd, bool force_quick_range, ha_rows limit) - { return test_quick_select(thd, key_map(~0L),0,limit, force_quick_range) < 0; } + { return test_quick_select(thd, key_map(~0), 0, limit, force_quick_range) < 0; } inline bool skipp_record() { return cond ? cond->val_int() == 0 : 0; } int test_quick_select(THD *thd, key_map keys, table_map prev_tables, ha_rows limit, bool force_quick_range=0); |