mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge branch 'bb-10.4-release' into bb-10.5-release
This commit is contained in:
@ -80,9 +80,8 @@ static int append_system_key_parts(THD *thd, HA_CREATE_INFO *create_info,
|
||||
static int mysql_prepare_create_table(THD *, HA_CREATE_INFO *, Alter_info *,
|
||||
uint *, handler *, KEY **, uint *, int);
|
||||
static uint blob_length_by_type(enum_field_types type);
|
||||
static bool fix_constraints_names(THD *thd, List<Virtual_column_info>
|
||||
*check_constraint_list,
|
||||
const HA_CREATE_INFO *create_info);
|
||||
static bool fix_constraints_names(THD *, List<Virtual_column_info> *,
|
||||
const HA_CREATE_INFO *);
|
||||
|
||||
/**
|
||||
@brief Helper function for explain_filename
|
||||
@ -4250,8 +4249,7 @@ mysql_prepare_create_table(THD *thd, HA_CREATE_INFO *create_info,
|
||||
key_part_length= MY_MIN(max_key_length, file->max_key_part_length());
|
||||
/* not a critical problem */
|
||||
push_warning_printf(thd, Sql_condition::WARN_LEVEL_NOTE,
|
||||
ER_TOO_LONG_KEY,
|
||||
ER_THD(thd, ER_TOO_LONG_KEY),
|
||||
ER_TOO_LONG_KEY, ER_THD(thd, ER_TOO_LONG_KEY),
|
||||
key_part_length);
|
||||
/* Align key length to multibyte char boundary */
|
||||
key_part_length-= key_part_length % sql_field->charset->mbmaxlen;
|
||||
@ -4295,7 +4293,7 @@ mysql_prepare_create_table(THD *thd, HA_CREATE_INFO *create_info,
|
||||
{
|
||||
key_part_length= file->max_key_part_length();
|
||||
/* not a critical problem */
|
||||
push_warning_printf(thd, Sql_condition::WARN_LEVEL_WARN,
|
||||
push_warning_printf(thd, Sql_condition::WARN_LEVEL_NOTE,
|
||||
ER_TOO_LONG_KEY, ER_THD(thd, ER_TOO_LONG_KEY),
|
||||
key_part_length);
|
||||
/* Align key length to multibyte char boundary */
|
||||
@ -4546,8 +4544,6 @@ without_overlaps_err:
|
||||
const Virtual_column_info *dup_check;
|
||||
while ((dup_check= dup_it++) && dup_check != check)
|
||||
{
|
||||
if (!dup_check->name.length || dup_check->automatic_name)
|
||||
continue;
|
||||
if (!lex_string_cmp(system_charset_info,
|
||||
&check->name, &dup_check->name))
|
||||
{
|
||||
@ -4597,7 +4593,8 @@ without_overlaps_err:
|
||||
ER_ILLEGAL_HA_CREATE_OPTION,
|
||||
ER_THD(thd, ER_ILLEGAL_HA_CREATE_OPTION),
|
||||
file->engine_name()->str,
|
||||
"TRANSACTIONAL=1");
|
||||
create_info->transactional == HA_CHOICE_YES
|
||||
? "TRANSACTIONAL=1" : "TRANSACTIONAL=0");
|
||||
|
||||
if (parse_option_list(thd, file->partition_ht(), &create_info->option_struct,
|
||||
&create_info->option_list,
|
||||
@ -5561,6 +5558,9 @@ bool mysql_create_table(THD *thd, TABLE_LIST *create_table,
|
||||
if (!opt_explicit_defaults_for_timestamp)
|
||||
promote_first_timestamp_column(&alter_info->create_list);
|
||||
|
||||
/* We can abort create table for any table type */
|
||||
thd->abort_on_warning= thd->is_strict_mode();
|
||||
|
||||
if (mysql_create_table_no_lock(thd, &create_table->db,
|
||||
&create_table->table_name, create_info,
|
||||
alter_info,
|
||||
@ -5598,6 +5598,8 @@ bool mysql_create_table(THD *thd, TABLE_LIST *create_table,
|
||||
}
|
||||
|
||||
err:
|
||||
thd->abort_on_warning= 0;
|
||||
|
||||
/* In RBR or readonly server we don't need to log CREATE TEMPORARY TABLE */
|
||||
if (!result && create_info->tmp_table() &&
|
||||
(thd->is_current_stmt_binlog_format_row() || (opt_readonly && !thd->slave_thread)))
|
||||
@ -9068,37 +9070,28 @@ mysql_prepare_alter_table(THD *thd, TABLE *table,
|
||||
}
|
||||
}
|
||||
|
||||
// NB: `check` is TABLE resident, we must keep it intact.
|
||||
if (keep)
|
||||
{
|
||||
check= check->clone(thd);
|
||||
if (!check)
|
||||
{
|
||||
my_error(ER_OUT_OF_RESOURCES, MYF(0));
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
|
||||
if (share->period.constr_name.streq(check->name.str))
|
||||
{
|
||||
if (drop_period)
|
||||
{
|
||||
keep= false;
|
||||
}
|
||||
else if(!keep)
|
||||
if (!drop_period && !keep)
|
||||
{
|
||||
my_error(ER_PERIOD_CONSTRAINT_DROP, MYF(0), check->name.str,
|
||||
share->period.name.str);
|
||||
goto err;
|
||||
}
|
||||
else
|
||||
keep= keep && !drop_period;
|
||||
|
||||
DBUG_ASSERT(create_info->period_info.constr == NULL || drop_period);
|
||||
|
||||
if (keep)
|
||||
{
|
||||
DBUG_ASSERT(create_info->period_info.constr == NULL);
|
||||
Item *expr_copy= check->expr->get_copy(thd);
|
||||
check= new Virtual_column_info();
|
||||
check->name= share->period.constr_name;
|
||||
check->automatic_name= true;
|
||||
check->expr= expr_copy;
|
||||
create_info->period_info.constr= check;
|
||||
create_info->period_info.constr->automatic_name= true;
|
||||
}
|
||||
}
|
||||
|
||||
/* see if the constraint depends on *only* on dropped fields */
|
||||
if (keep && dropped_fields)
|
||||
{
|
||||
|
Reference in New Issue
Block a user