summaryrefslogtreecommitdiff
path: root/sql/partition_element.h
diff options
context:
space:
mode:
authorunknown <mikael@c-870ae253.1238-1-64736c10.cust.bredbandsbolaget.se>2006-04-21 08:43:07 -0400
committerunknown <mikael@c-870ae253.1238-1-64736c10.cust.bredbandsbolaget.se>2006-04-21 08:43:07 -0400
commit661537c744232bb2e110bf9e8973deb962d2a72b (patch)
tree3134b1337835cddc30818d013c39e701baabfbfa /sql/partition_element.h
parent058aa025858115fb01860dfa30ca568425292819 (diff)
downloadmariadb-git-661537c744232bb2e110bf9e8973deb962d2a72b.tar.gz
BUG#19067: Crash when ALTER TABLE for default subpartitioned table
mysql-test/r/partition.result: New test cases mysql-test/r/partition_02myisam.result: ENGINE always specified per partition in show table mysql-test/t/partition.test: New test cases sql/partition_element.h: New copy constructor for partition_element sql/partition_info.cc: Use new copy constructor to ensure default subpartitions inherit partition options from parent Ensure engine is always set on both partitions and subpartitions sql/sql_partition.cc: Removed unneeded bool to generate_partition_syntax Write partition options also for subpartitioned tables when subpartitioning is by default Set up defaults for new partitions also in REORGANIZE PARTITION sql/sql_partition.h: Removed unneeded parameter to generate_partition_syntax call sql/sql_show.cc: Removed unneeded parameter to generate_partition_syntax call sql/sql_table.cc: Removed unneeded parameter to generate_partition_syntax call
Diffstat (limited to 'sql/partition_element.h')
-rw-r--r--sql/partition_element.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/partition_element.h b/sql/partition_element.h
index d20715d2408..51a54771ee3 100644
--- a/sql/partition_element.h
+++ b/sql/partition_element.h
@@ -63,5 +63,21 @@ public:
subpartitions.empty();
list_val_list.empty();
}
+ partition_element(partition_element *part_elem)
+ : partition_name(NULL), range_value(0), has_null_value(FALSE)
+ {
+ subpartitions.empty();
+ list_val_list.empty();
+
+ part_max_rows= part_elem->part_max_rows;
+ part_min_rows= part_elem->part_min_rows;
+ tablespace_name= part_elem->tablespace_name;
+ part_comment= part_elem->part_comment;
+ data_file_name= part_elem->data_file_name;
+ index_file_name= part_elem->index_file_name;
+ engine_type= part_elem->engine_type;
+ part_state= part_elem->part_state;
+ nodegroup_id= part_elem->nodegroup_id;
+ }
~partition_element() {}
};