1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

BUG#18962: Crash of ALTER TABLE .. DROP PARTITION ...

Review fixes


sql/partition_info.cc:
  Review fixes
sql/partition_info.h:
  Review fixes
This commit is contained in:
unknown
2006-04-21 08:37:09 -04:00
parent e66e612931
commit 2cb17f9691
2 changed files with 4 additions and 2 deletions

View File

@@ -88,7 +88,7 @@ partition_info *partition_info::get_clone()
The external routine needing this code is check_partition_info
*/
#define MAX_PART_NAME_SIZE 16
#define MAX_PART_NAME_SIZE 8
char *partition_info::create_default_partition_names(uint part_no, uint no_parts,
uint start_no)
@@ -125,7 +125,8 @@ char *partition_info::create_default_partition_names(uint part_no, uint no_parts
0 Memory allocation error
*/
char *create_subpartition_name(uint subpart_no, const char *part_name)
char *partition_info::create_subpartition_name(uint subpart_no,
const char *part_name)
{
uint size_alloc= strlen(part_name) + MAX_PART_NAME_SIZE;
char *ptr= sql_calloc(size_alloc);

View File

@@ -257,6 +257,7 @@ private:
bool set_up_default_subpartitions(handler *file, ulonglong max_rows);
char *create_default_partition_names(uint part_no, uint no_parts,
uint start_no);
char *create_subpartition_name(uint subpart_no, const char *part_name);
bool has_unique_name(partition_element *element);
};