[Groonga-mysql-commit] mroonga/mroonga at afb66bc [master] mysql8: HA_REC_NOT_IN_SEQ is removed since MySQL 8

Back to archive index

Kouhei Sutou null+****@clear*****
Mon Jul 9 06:30:31 JST 2018


Kouhei Sutou	2018-07-09 06:30:31 +0900 (Mon, 09 Jul 2018)

  New Revision: afb66bcae0c9dc690d1d966974fee348841164cc
  https://github.com/mroonga/mroonga/commit/afb66bcae0c9dc690d1d966974fee348841164cc

  Message:
    mysql8: HA_REC_NOT_IN_SEQ is removed since MySQL 8

  Modified files:
    ha_mroonga.cpp

  Modified: ha_mroonga.cpp (+7 -2)
===================================================================
--- ha_mroonga.cpp    2018-07-09 06:21:38 +0900 (ff032bda)
+++ ha_mroonga.cpp    2018-07-09 06:30:31 +0900 (eb8fa754)
@@ -3163,7 +3163,7 @@ ulonglong ha_mroonga::wrapper_table_flags() const
     MRN_SET_BASE_TABLE_KEY(this, table);
   }
   table_flags |= HA_CAN_FULLTEXT | HA_PRIMARY_KEY_REQUIRED_FOR_DELETE |
-    HA_CAN_RTREEKEYS | HA_REC_NOT_IN_SEQ;
+    HA_CAN_RTREEKEYS;
 #ifdef HA_CAN_REPAIR
   table_flags |= HA_CAN_REPAIR;
 #endif
@@ -3176,6 +3176,9 @@ ulonglong ha_mroonga::wrapper_table_flags() const
 #ifdef HA_CAN_VIRTUAL_COLUMNS
   table_flags |= HA_CAN_VIRTUAL_COLUMNS;
 #endif
+#ifdef HA_REC_NOT_IN_SEQ
+  table_flags |= HA_REC_NOT_IN_SEQ;
+#endif
   DBUG_RETURN(table_flags);
 }
 
@@ -3185,7 +3188,6 @@ ulonglong ha_mroonga::storage_table_flags() const
   ulonglong flags =
     HA_NO_TRANSACTIONS |
     HA_PARTIAL_COLUMN_READ |
-    HA_REC_NOT_IN_SEQ |
     HA_NULL_IN_KEY |
     HA_CAN_INDEX_BLOBS |
     HA_STATS_RECORDS_IS_EXACT |
@@ -3216,6 +3218,9 @@ ulonglong ha_mroonga::storage_table_flags() const
 #ifdef HA_CAN_VIRTUAL_COLUMNS
   flags |= HA_CAN_VIRTUAL_COLUMNS;
 #endif
+#ifdef HA_REC_NOT_IN_SEQ
+  flags |= HA_REC_NOT_IN_SEQ;
+#endif
   DBUG_RETURN(flags);
 }
 
-------------- next part --------------
HTML����������������������������...
URL: https://lists.osdn.me/mailman/archives/groonga-mysql-commit/attachments/20180709/8c78ccd7/attachment-0001.htm 



More information about the Groonga-mysql-commit mailing list
Back to archive index