diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-12-22 17:08:22 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-12-22 17:08:22 +0100 |
commit | 348c962c4931a6930cff1a16645aaf322b488005 (patch) | |
tree | 737cb2762f51359dc1151dbc367c0fb0e26b62d9 | |
parent | ffa8c4cfcc41d4f160e3bdfca5cfd4b01a7d6e63 (diff) | |
download | mariadb-git-348c962c4931a6930cff1a16645aaf322b488005.tar.gz |
fix xtradb I_S tables to load
-rw-r--r-- | storage/xtradb/handler/i_s.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/storage/xtradb/handler/i_s.cc b/storage/xtradb/handler/i_s.cc index 22fae62038f..98a7887bc07 100644 --- a/storage/xtradb/handler/i_s.cc +++ b/storage/xtradb/handler/i_s.cc @@ -2859,7 +2859,7 @@ UNIV_INTERN struct st_mysql_plugin i_s_innodb_ft_default_stopword = /* pointer to type-specific plugin descriptor */ /* void* */ - STRUCT_FLD(info, &i_s_stopword_fields_info), + STRUCT_FLD(info, &i_s_info), /* plugin name */ /* const char* */ @@ -3026,7 +3026,7 @@ UNIV_INTERN struct st_mysql_plugin i_s_innodb_ft_deleted = /* pointer to type-specific plugin descriptor */ /* void* */ - STRUCT_FLD(info, &i_s_fts_doc_fields_info), + STRUCT_FLD(info, &i_s_info), /* plugin name */ /* const char* */ @@ -3108,7 +3108,7 @@ UNIV_INTERN struct st_mysql_plugin i_s_innodb_ft_being_deleted = /* pointer to type-specific plugin descriptor */ /* void* */ - STRUCT_FLD(info, &i_s_fts_doc_fields_info), + STRUCT_FLD(info, &i_s_info), /* plugin name */ /* const char* */ @@ -3370,7 +3370,7 @@ UNIV_INTERN struct st_mysql_plugin i_s_innodb_ft_index_cache = /* pointer to type-specific plugin descriptor */ /* void* */ - STRUCT_FLD(info, &i_s_fts_index_fields_info), + STRUCT_FLD(info, &i_s_info), /* plugin name */ /* const char* */ @@ -3670,7 +3670,7 @@ UNIV_INTERN struct st_mysql_plugin i_s_innodb_ft_index_table = /* pointer to type-specific plugin descriptor */ /* void* */ - STRUCT_FLD(info, &i_s_fts_index_fields_info), + STRUCT_FLD(info, &i_s_info), /* plugin name */ /* const char* */ @@ -3863,7 +3863,7 @@ UNIV_INTERN struct st_mysql_plugin i_s_innodb_ft_config = /* pointer to type-specific plugin descriptor */ /* void* */ - STRUCT_FLD(info, &i_s_fts_config_fields_info), + STRUCT_FLD(info, &i_s_info), /* plugin name */ /* const char* */ |