diff options
author | kostja@oak.local <> | 2003-09-03 14:12:10 +0400 |
---|---|---|
committer | kostja@oak.local <> | 2003-09-03 14:12:10 +0400 |
commit | 36dd82c1d5b8426f74b698182f9fac05e65682ac (patch) | |
tree | 4aa3e74d29fde5abc55c20c2c14e6c286e467c6e /sql/sql_class.h | |
parent | f655ba9866e62296e773b1717c51301d528404fe (diff) | |
parent | 765053c83894458a15a82cce5e9b549c210db42c (diff) | |
download | mariadb-git-36dd82c1d5b8426f74b698182f9fac05e65682ac.tar.gz |
merge commit, hope that none of bar and dlenev changes were
lost.
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 8463c0226f5..a49162bb4ef 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -399,6 +399,7 @@ struct system_variables my_bool log_warnings; my_bool low_priority_updates; my_bool new_mode; + my_bool old_passwords; CHARSET_INFO *character_set_server; CHARSET_INFO *character_set_database; @@ -556,10 +557,10 @@ public: enum_tx_isolation session_tx_isolation; /* for user variables replication*/ DYNAMIC_ARRAY user_var_events; - // extend scramble to handle new auth - char scramble[SCRAMBLE41_LENGTH+1]; - // old scramble is needed to handle old clients - char old_scramble[SCRAMBLE_LENGTH+1]; + + /* scramble - random string sent to client on handshake */ + char scramble[SCRAMBLE_LENGTH+1]; + uint8 query_cache_type; // type of query cache processing bool slave_thread; bool set_query_id,locked,count_cuted_fields,some_tables_deleted; |