mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Code optimization(discussed with Monty)
This commit is contained in:
@ -59,6 +59,7 @@ gerberb@ou800.zenez.com
|
|||||||
gluh@eagle.intranet.mysql.r18.ru
|
gluh@eagle.intranet.mysql.r18.ru
|
||||||
gluh@gluh.(none)
|
gluh@gluh.(none)
|
||||||
gluh@gluh.mysql.r18.ru
|
gluh@gluh.mysql.r18.ru
|
||||||
|
gluh@mysql.com
|
||||||
gordon@zero.local.lan
|
gordon@zero.local.lan
|
||||||
greg@gcw.ath.cx
|
greg@gcw.ath.cx
|
||||||
greg@mysql.com
|
greg@mysql.com
|
||||||
|
@ -2334,25 +2334,13 @@ static int get_schema_column_record(THD *thd, struct st_table_list *tables,
|
|||||||
"NO" : "YES");
|
"NO" : "YES");
|
||||||
table->field[6]->store((const char*) pos,
|
table->field[6]->store((const char*) pos,
|
||||||
strlen((const char*) pos), cs);
|
strlen((const char*) pos), cs);
|
||||||
|
if (field->has_charset())
|
||||||
switch (field->type()) {
|
{
|
||||||
case FIELD_TYPE_TINY_BLOB:
|
table->field[8]->store((longlong) field->representation_length()/
|
||||||
case FIELD_TYPE_MEDIUM_BLOB:
|
field->charset()->mbmaxlen);
|
||||||
case FIELD_TYPE_LONG_BLOB:
|
|
||||||
case FIELD_TYPE_BLOB:
|
|
||||||
case FIELD_TYPE_VAR_STRING:
|
|
||||||
case FIELD_TYPE_STRING:
|
|
||||||
if (field->has_charset())
|
|
||||||
table->field[8]->store((longlong) field->representation_length()/
|
|
||||||
field->charset()->mbmaxlen);
|
|
||||||
else
|
|
||||||
table->field[8]->store((longlong) field->representation_length());
|
|
||||||
table->field[8]->set_notnull();
|
table->field[8]->set_notnull();
|
||||||
table->field[9]->store((longlong) field->representation_length());
|
table->field[9]->store((longlong) field->representation_length());
|
||||||
table->field[9]->set_notnull();
|
table->field[9]->set_notnull();
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user