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

Review fixes
This commit is contained in:
mikael@c-870ae253.1238-1-64736c10.cust.bredbandsbolaget.se 2006-04-21 08:37:09 -04:00
parent a3f152cc6e
commit fe46ee9111
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);
};