summaryrefslogtreecommitdiff
path: root/sql/handler.h
diff options
context:
space:
mode:
authorserg@janus.mylan <>2007-04-16 18:16:17 +0200
committerserg@janus.mylan <>2007-04-16 18:16:17 +0200
commit00479a441ddeeeb334a002fc7883a8777e8caf30 (patch)
tree45078bb08a9d29ab98b50746b333b59e2f1f43af /sql/handler.h
parent6bc9bc92df57f1cc586e2223e23c0e94003fa7eb (diff)
downloadmariadb-git-00479a441ddeeeb334a002fc7883a8777e8caf30.tar.gz
wl#2936 post-merge fixes
Diffstat (limited to 'sql/handler.h')
-rw-r--r--sql/handler.h5
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)
{