From 2d45f765233dfdd83f2def9efe4c98a849ff4300 Mon Sep 17 00:00:00 2001 From: marko Date: Mon, 14 Aug 2006 07:34:26 +0000 Subject: [PATCH] Merge code from MySQL: ChangeSet@1.2181.173.1 2006-08-02 17:57:06+02:00 ingo@local Bug#18775 - Temporary table from alter table visible to other threads Continued implementation of WL#1324 (table name to filename encoding) Changed back the encoded temp file prefix to #sql. --- row/row0mysql.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/row/row0mysql.c b/row/row0mysql.c index 85d84839692..f2d501e0ba7 100644 --- a/row/row0mysql.c +++ b/row/row0mysql.c @@ -3334,8 +3334,8 @@ row_is_mysql_tmp_table_name( const char* name) /* in: table name in the form 'database/tablename' */ { - /* return(strstr(name, "/#sql") != NULL); */ - return(strstr(name, "/@0023sql") != NULL); + return(strstr(name, "/#sql") != NULL); + /* return(strstr(name, "/@0023sql") != NULL); */ } /********************************************************************