From 67a6dd9fb9a50e6adf31d3af9872ade3a6a79fb6 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 2 Jan 2006 02:45:26 +0100 Subject: [PATCH] Do not use C++ style comments (//) in C source (breaks compilation on aix52). --- storage/innobase/row/row0mysql.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/innobase/row/row0mysql.c b/storage/innobase/row/row0mysql.c index c733bf5c8f2..86d9ecf9c54 100644 --- a/storage/innobase/row/row0mysql.c +++ b/storage/innobase/row/row0mysql.c @@ -3484,7 +3484,7 @@ 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, "/#sql") != NULL); */ return(strstr(name, "/@0023sql") != NULL); }