diff options
author | serg@janus.mylan <> | 2007-04-16 18:16:17 +0200 |
---|---|---|
committer | serg@janus.mylan <> | 2007-04-16 18:16:17 +0200 |
commit | 00479a441ddeeeb334a002fc7883a8777e8caf30 (patch) | |
tree | 45078bb08a9d29ab98b50746b333b59e2f1f43af /sql/handler.h | |
parent | 6bc9bc92df57f1cc586e2223e23c0e94003fa7eb (diff) | |
download | mariadb-git-00479a441ddeeeb334a002fc7883a8777e8caf30.tar.gz |
wl#2936 post-merge fixes
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/handler.h b/sql/handler.h index a940841170b..052c245b801 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -968,11 +968,12 @@ public: Discrete_interval auto_inc_interval_for_cur_row; handler(handlerton *ht_arg, TABLE_SHARE *share_arg) - :table_share(share_arg), estimation_rows_to_insert(0), ht(ht_arg), + :table_share(share_arg), table(0), + estimation_rows_to_insert(0), ht(ht_arg), ref(0), key_used_on_scan(MAX_KEY), active_index(MAX_KEY), ref_length(sizeof(my_off_t)), ft_handler(0), inited(NONE), implicit_emptied(0), - pushed_cond(NULL), next_insert_id(0), insert_id_for_cur_row(0) + pushed_cond(0), next_insert_id(0), insert_id_for_cur_row(0) {} virtual ~handler(void) { |