From 692e9dd6f0d65253c1d41865eb6495d0962a1a76 Mon Sep 17 00:00:00 2001 From: "lenz@mysql.com" <> Date: Thu, 15 Apr 2004 04:55:49 +0200 Subject: [PATCH] - Fixed compile error in sql_parse.cc --- 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 1e3beeca8a9..3a3ebc93f51 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -5223,5 +5223,5 @@ int create_table_precheck(THD *thd, TABLE_LIST *tables, DBUG_RETURN(1); DBUG_RETURN((grant_option && want_priv != CREATE_TMP_ACL && check_grant(thd, want_priv, create_table, 0, UINT_MAX, 0)) ? - 1 : 0) + 1 : 0); }