Navigation Menu

Skip to content

Commit

Permalink
add inheriting connect_string
Browse files Browse the repository at this point in the history
  • Loading branch information
Kentoku committed Sep 2, 2011
1 parent 29ae4bd commit e668bbe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ha_mroonga.cc
Expand Up @@ -5609,6 +5609,11 @@ void ha_mroonga::storage_update_create_info(HA_CREATE_INFO* create_info)
void ha_mroonga::update_create_info(HA_CREATE_INFO* create_info)
{
MRN_DBUG_ENTER_METHOD();
if (!create_info->connect_string.str)
{
create_info->connect_string.str = table->s->connect_string.str;
create_info->connect_string.length = table->s->connect_string.length;
}
if (share->wrapper_mode)
wrapper_update_create_info(create_info);
else
Expand Down

0 comments on commit e668bbe

Please sign in to comment.