1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Changed ROW_RESULT to default

This commit is contained in:
gluh@gluh.mysql.r18.ru
2003-01-31 14:07:07 +04:00
parent 0a48aeb2c1
commit 7cfbabd807
7 changed files with 28 additions and 22 deletions

View File

@ -3847,7 +3847,7 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type,
item->name,table,item->charset());
return new Field_string(item_sum->max_length,maybe_null,
item->name,table,item->charset());
case ROW_RESULT:
default:
// This case should never be choosen
DBUG_ASSERT(0);
return 0;
@ -3907,7 +3907,7 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type,
new_field= new Field_string(item->max_length,maybe_null,
item->name,table,item->str_value.charset());
break;
case ROW_RESULT:
default:
// This case should never be choosen
DBUG_ASSERT(0);
break;