Navigation Menu

Skip to content

Commit

Permalink
Revert "fix build errors for MySQL 5.6.3. refs #1223"
Browse files Browse the repository at this point in the history
This reverts commit 174c7b3.
  • Loading branch information
kou committed Dec 21, 2011
1 parent 174c7b3 commit 9377e12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ha_mroonga.h
Expand Up @@ -57,7 +57,7 @@ extern "C" {
# define MRN_HANDLER_HAVE_HA_INDEX_NEXT_SAME 1
#endif

#if (MYSQL_VERSION_ID >= 50603) || \
#if (MYSQL_VERSION_ID >= 50604) || \
(defined(MRN_MARIADB_P) && MYSQL_VERSION_ID >= 50302)
# define MRN_HANDLER_HAVE_HA_CLOSE 1
# define MRN_HANDLER_HAVE_MULTI_RANGE_READ 1
Expand Down
4 changes: 2 additions & 2 deletions mrn_mysql_compat.h
Expand Up @@ -48,11 +48,11 @@
typedef MYSQL_ERROR Sql_condition;
#endif

#if (defined(MRN_MARIADB_P) && MYSQL_VERSION_ID >= 50302) || MYSQL_VERSION_ID >= 50603
#if (defined(MRN_MARIADB_P) && MYSQL_VERSION_ID >= 50302)
typedef COST_VECT Cost_estimate;
#endif

#if (MYSQL_VERSION_ID >= 50516 && MYSQL_VERSION_ID < 50600) || MYSQL_VERSION_ID >= 50604
#if MYSQL_VERSION_ID >= 50516
# define MRN_PLUGIN_HAVE_FLAGS 1
#endif

Expand Down

0 comments on commit 9377e12

Please sign in to comment.