[Groonga-mysql-commit] mroonga/mroonga at fdc0ec5 [master] mariadb10.3.4: support inspecting newly added operation

Back to archive index

Kouhei Sutou null+****@clear*****
Fri Jan 26 12:54:24 JST 2018


Kouhei Sutou	2018-01-26 12:54:24 +0900 (Fri, 26 Jan 2018)

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

  Message:
    mariadb10.3.4: support inspecting newly added operation

  Modified files:
    ha_mroonga.cpp
    ha_mroonga.hpp

  Modified: ha_mroonga.cpp (+5 -0)
===================================================================
--- ha_mroonga.cpp    2018-01-26 12:54:06 +0900 (9e27ed30)
+++ ha_mroonga.cpp    2018-01-26 12:54:24 +0900 (14a1680c)
@@ -582,6 +582,11 @@ static const char *mrn_inspect_extra_function(enum ha_extra_function operation)
     inspected = "HA_EXTRA_PREPARE_FOR_ALTER_TABLE";
     break;
 #endif
+#ifdef MRN_HAVE_HA_EXTRA_STARTING_ORDERED_INDEX_SCAN
+  case HA_EXTRA_STARTING_ORDERED_INDEX_SCAN:
+    inspected = "HA_EXTRA_STARTING_ORDERED_INDEX_SCAN";
+    break;
+#endif
   }
   return inspected;
 }

  Modified: ha_mroonga.hpp (+4 -0)
===================================================================
--- ha_mroonga.hpp    2018-01-26 12:54:06 +0900 (86751be4)
+++ ha_mroonga.hpp    2018-01-26 12:54:24 +0900 (662427b1)
@@ -130,6 +130,10 @@ extern "C" {
 #  define MRN_HAVE_HA_EXTRA_PREPARE_FOR_ALTER_TABLE
 #endif
 
+#if MYSQL_VERSION_ID >= 100304 && defined(MRN_MARIADB_P)
+#  define MRN_HAVE_HA_EXTRA_STARTING_ORDERED_INDEX_SCAN
+#endif
+
 #if MYSQL_VERSION_ID >= 50604 && !defined(MRN_MARIADB_P)
 #  define MRN_TIMESTAMP_USE_TIMEVAL
 #elif defined(MRN_MARIADB_P)
-------------- next part --------------
HTML����������������������������...
URL: https://lists.osdn.me/mailman/archives/groonga-mysql-commit/attachments/20180126/0a054dfb/attachment.htm 



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