diff options
author | Aleksey Midenkov <midenok@gmail.com> | 2017-12-22 16:39:28 +0300 |
---|---|---|
committer | Aleksey Midenkov <midenok@gmail.com> | 2017-12-22 16:40:09 +0300 |
commit | ea49441c416347a37d1576bb20e05ac53eade06f (patch) | |
tree | e35b42acb771b5816f2c4dba4a426d8572071ef6 /sql/partition_info.h | |
parent | 9cbf9e3b927a450c8b45369c245b1fd0f6db4913 (diff) | |
download | mariadb-git-ea49441c416347a37d1576bb20e05ac53eade06f.tar.gz |
Partition: uninitialized vers_info fix
Diffstat (limited to 'sql/partition_info.h')
-rw-r--r-- | sql/partition_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/partition_info.h b/sql/partition_info.h index 1e291a94e3f..b167284d3fd 100644 --- a/sql/partition_info.h +++ b/sql/partition_info.h @@ -292,7 +292,7 @@ public: part_expr(NULL), subpart_expr(NULL), item_free_list(NULL), first_log_entry(NULL), exec_log_entry(NULL), frm_log_entry(NULL), bitmaps_are_initialized(FALSE), - list_array(NULL), err_value(0), + list_array(NULL), vers_info(NULL), err_value(0), part_info_string(NULL), curr_part_elem(NULL), current_partition(NULL), curr_list_object(0), num_columns(0), table(NULL), |