mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
BUG#18962: Crash of ALTER TABLE .. DROP PARTITION ...
Review fixes
This commit is contained in:
parent
a3f152cc6e
commit
fe46ee9111
2 changed files with 4 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue