From b6685d35dcc45e4fc8eca53fa8f6d3315f2e6b89 Mon Sep 17 00:00:00 2001 From: Sergey Glukhov Date: Fri, 15 Jan 2010 17:03:51 +0400 Subject: [PATCH] compilation failure fix --- sql/sql_parse.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index f5bba693190..49d18cbe5d7 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -5412,7 +5412,7 @@ check_table_access(THD *thd, ulong requirements,TABLE_LIST *tables, DBUG_PRINT("info", ("derived: %d view: %d", tables->derived != 0, tables->view != 0)); if (tables->is_anonymous_derived_table() || - (tables->table && (int)tables->table->s && + (tables->table && tables->table->s && (int)tables->table->s->tmp_table)) continue; thd->security_ctx= sctx;