summaryrefslogtreecommitdiff
path: root/sql/mysqld.cc
diff options
context:
space:
mode:
authorunknown <thek@adventure.(none)>2007-05-29 10:17:30 +0200
committerunknown <thek@adventure.(none)>2007-05-29 10:17:30 +0200
commit2212ad470e41cc0a392931fdd260d8833c0c5554 (patch)
treeb60fcdd7cbc3bd9ddedb690cffbcedcee65ed473 /sql/mysqld.cc
parent5ed76763f864f8d0a5a6295e1ba492cd2f1acbf9 (diff)
parent96d16d96d12560b54da550d79ff0017d2976aacc (diff)
downloadmariadb-git-2212ad470e41cc0a392931fdd260d8833c0c5554.tar.gz
Merge adventure.(none):/home/thek/Development/cpp/bug24988/my50-bug24988
into adventure.(none):/home/thek/Development/cpp/mysql-5.0-runtime sql/mysqld.cc: Auto merged
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r--sql/mysqld.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc
index 051bad5b310..761cb4b50e2 100644
--- a/sql/mysqld.cc
+++ b/sql/mysqld.cc
@@ -346,7 +346,15 @@ bool opt_endinfo, using_udf_functions;
my_bool locked_in_memory;
bool opt_using_transactions, using_update_log;
bool volatile abort_loop;
-bool volatile shutdown_in_progress, grant_option;
+bool volatile shutdown_in_progress;
+/**
+ @brief 'grant_option' is used to indicate if privileges needs
+ to be checked, in which case the lock, LOCK_grant, is used
+ to protect access to the grant table.
+ @note This flag is dropped in 5.1
+ @see grant_init()
+ */
+bool volatile grant_option;
my_bool opt_skip_slave_start = 0; // If set, slave is not autostarted
my_bool opt_reckless_slave = 0;