Navigation Menu

Skip to content

Commit

Permalink
mariadb10.3: follow name change
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jan 10, 2018
1 parent 601e7f0 commit c560b27
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ha_mroonga.cpp
Expand Up @@ -2975,7 +2975,12 @@ ulonglong ha_mroonga::storage_table_flags() const
HA_CAN_RTREEKEYS;
//HA_HAS_RECORDS;
#ifdef HA_MUST_USE_TABLE_CONDITION_PUSHDOWN
flags |= HA_MUST_USE_TABLE_CONDITION_PUSHDOWN;
# ifndef HA_CAN_TABLE_CONDITION_PUSHDOWN
# define HA_CAN_TABLE_CONDITION_PUSHDOWN HA_MUST_USE_TABLE_CONDITION_PUSHDOWN
# endif
#endif
#ifdef HA_CAN_TABLE_CONDITION_PUSHDOWN
flags |= HA_CAN_TABLE_CONDITION_PUSHDOWN;
#endif
#ifdef HA_CAN_REPAIR
flags |= HA_CAN_REPAIR;
Expand Down

0 comments on commit c560b27

Please sign in to comment.