Commit be45f083 authored by Marko Mäkelä's avatar Marko Mäkelä

Merge 10.0 into 10.1

parents 38ca9be4 6be93c3b
...@@ -75,6 +75,8 @@ static struct errentry errtable[]= { ...@@ -75,6 +75,8 @@ static struct errentry errtable[]= {
{ ERROR_ALREADY_EXISTS, EEXIST }, /* 183 */ { ERROR_ALREADY_EXISTS, EEXIST }, /* 183 */
{ ERROR_FILENAME_EXCED_RANGE, ENOENT }, /* 206 */ { ERROR_FILENAME_EXCED_RANGE, ENOENT }, /* 206 */
{ ERROR_NESTING_NOT_ALLOWED, EAGAIN }, /* 215 */ { ERROR_NESTING_NOT_ALLOWED, EAGAIN }, /* 215 */
{ ERROR_FILE_SYSTEM_LIMITATION, EFBIG }, /* 665 */
{ ERROR_NO_SYSTEM_RESOURCES, ENOMEM }, /* 1450 */
{ ERROR_NOT_ENOUGH_QUOTA, ENOMEM } /* 1816 */ { ERROR_NOT_ENOUGH_QUOTA, ENOMEM } /* 1816 */
}; };
......
...@@ -236,7 +236,7 @@ bool Foreign_key::validate(List<Create_field> &table_fields) ...@@ -236,7 +236,7 @@ bool Foreign_key::validate(List<Create_field> &table_fields)
sql_field->field_name)) {} sql_field->field_name)) {}
if (!sql_field) if (!sql_field)
{ {
my_error(ER_KEY_COLUMN_DOES_NOT_EXITS, MYF(0), column->field_name); my_error(ER_KEY_COLUMN_DOES_NOT_EXITS, MYF(0), column->field_name.str);
DBUG_RETURN(TRUE); DBUG_RETURN(TRUE);
} }
if (type == Key::FOREIGN_KEY && sql_field->vcol_info) if (type == Key::FOREIGN_KEY && sql_field->vcol_info)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment