Commit 62d6f430 authored by knielsen@mysql.com's avatar knielsen@mysql.com

Do not use C++ style comments (//) in C source (breaks compilation on aix52).

parent 9cfa1def
...@@ -3484,7 +3484,7 @@ row_is_mysql_tmp_table_name( ...@@ -3484,7 +3484,7 @@ row_is_mysql_tmp_table_name(
const char* name) /* in: table name in the form const char* name) /* in: table name in the form
'database/tablename' */ 'database/tablename' */
{ {
//return(strstr(name, "/#sql") != NULL); /* return(strstr(name, "/#sql") != NULL); */
return(strstr(name, "/@0023sql") != NULL); return(strstr(name, "/@0023sql") != NULL);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment