[Groonga-mysql-commit] mroonga/mroonga at f4b1923 [master] mysql57: change tmp_table value

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Apr 21 00:04:34 JST 2016


Kouhei Sutou	2016-04-21 00:04:34 +0900 (Thu, 21 Apr 2016)

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

  Message:
    mysql57: change tmp_table value
    
    Because open_table_def() in MySQL 5.7 doesn't open tmp table...

  Modified files:
    mrn_table.cpp

  Modified: mrn_table.cpp (+1 -1)
===================================================================
--- mrn_table.cpp    2016-04-20 23:47:12 +0900 (7778113)
+++ mrn_table.cpp    2016-04-21 00:04:34 +0900 (1c208e9)
@@ -1061,7 +1061,7 @@ TABLE_SHARE *mrn_create_tmp_table_share(TABLE_LIST *table_list, const char *path
     *error = ER_CANT_OPEN_FILE;
     DBUG_RETURN(NULL);
   }
-  share->tmp_table = INTERNAL_TMP_TABLE; // TODO: is this right?
+  share->tmp_table = NO_TMP_TABLE; // TODO: is this right?
   share->path.str = (char *) path;
   share->path.length = strlen(share->path.str);
   share->normalized_path.str = mrn_my_strdup(path, MYF(MY_WME));
-------------- next part --------------
HTML����������������������������...
Descargar 



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