Navigation Menu

Skip to content

Commit

Permalink
mysql57: THD::abort_on_warning is removed
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Mar 16, 2015
1 parent 4017b04 commit 5f7fa8b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ha_mroonga.cpp
Expand Up @@ -157,7 +157,11 @@ static mysql_mutex_t *mrn_LOCK_open;
# else
# define MRN_PLUGIN_LAST_VALUES NULL
# endif
# define MRN_ABORT_ON_WARNING(thd) thd->abort_on_warning
# if MYSQL_VERSION_ID >= 50706
# define MRN_ABORT_ON_WARNING(thd) false
# else
# define MRN_ABORT_ON_WARNING(thd) thd->abort_on_warning
# endif
#endif

#ifdef WIN32
Expand Down

0 comments on commit 5f7fa8b

Please sign in to comment.