- Fixed compile error in sql_parse.cc

sql/sql_parse.cc:
   - Fixed compile error
This commit is contained in:
unknown 2004-04-15 04:55:49 +02:00
parent f10d01a747
commit 4cc26335c1

View File

@ -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);
}