Navigation Menu

Skip to content

Commit

Permalink
mysql57: change tmp_table value
Browse files Browse the repository at this point in the history
Because open_table_def() in MySQL 5.7 doesn't open tmp table...
  • Loading branch information
kou committed Apr 20, 2016
1 parent 7a2fe71 commit f4b1923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mrn_table.cpp
Expand Up @@ -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));
Expand Down

0 comments on commit f4b1923

Please sign in to comment.