diff options
author | Igor Babaev <igor@askmonty.org> | 2011-11-04 05:39:45 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-11-04 05:39:45 -0700 |
commit | 928e94fb98b34e511d89c1ca38e35b42656c9313 (patch) | |
tree | 74863e1e60120f9bd64a67ecbe9308b930bef86d /sql/handler.h | |
parent | c1ebb566b36df00ad21a8b9d35ab6ad9de5e0b5b (diff) | |
download | mariadb-git-928e94fb98b34e511d89c1ca38e35b42656c9313.tar.gz |
Fixed LP bug #885168.
The call of the virtual function cancel_pushed_idx_cond in the code of
the function test_if_skip_sort_order was misplaced when backporting the
fix for bug 58816.
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/handler.h b/sql/handler.h index 1f45b1a1e7d..66320c7e98f 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -1666,7 +1666,7 @@ public: handler(handlerton *ht_arg, TABLE_SHARE *share_arg) :table_share(share_arg), table(0), estimation_rows_to_insert(0), ht(ht_arg), - ref(0), in_range_check_pushed_down(FALSE), + ref(0), end_range(NULL), in_range_check_pushed_down(FALSE), key_used_on_scan(MAX_KEY), active_index(MAX_KEY), ref_length(sizeof(my_off_t)), ft_handler(0), inited(NONE), |