Commit 37a78d68 authored by Sergei Golubchik's avatar Sergei Golubchik

forgotten option handled

parent 62d31f67
...@@ -4181,8 +4181,10 @@ static int get_schema_tables_record(THD *thd, TABLE_LIST *tables, ...@@ -4181,8 +4181,10 @@ static int get_schema_tables_record(THD *thd, TABLE_LIST *tables,
str.qs_append(STRING_WITH_LEN(" partitioned")); str.qs_append(STRING_WITH_LEN(" partitioned"));
#endif #endif
if (share->transactional != HA_CHOICE_UNDEF) if (share->transactional != HA_CHOICE_UNDEF)
ptr= strxmov(ptr, " transactional=", {
ha_choice_values[(uint) share->transactional], NullS); str.qs_append(STRING_WITH_LEN(" transactional="));
str.qs_append(ha_choice_values[(uint) share->transactional]);
}
append_create_options(thd, &str, share->option_list); append_create_options(thd, &str, share->option_list);
if (str.length()) if (str.length())
table->field[19]->store(str.ptr()+1, str.length()-1, cs); table->field[19]->store(str.ptr()+1, str.length()-1, cs);
......
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