summaryrefslogtreecommitdiff
path: root/sql/sql_class.cc
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2001-12-06 01:05:30 +0200
committerunknown <monty@hundin.mysql.fi>2001-12-06 01:05:30 +0200
commitff8c7348648b2a2e1ce14d8332c065a38a43ca0c (patch)
treeb6eaff9c9c574324b7a2aae18f5de2e52f89576c /sql/sql_class.cc
parent84788e278f97ccabe0cfe6d5b6cfcdbe1fe86c59 (diff)
downloadmariadb-git-ff8c7348648b2a2e1ce14d8332c065a38a43ca0c.tar.gz
Update of query cache code
Docs/manual.texi: Added information about RESET sql/mysql_priv.h: Fixed wrong type sql/sql_base.cc: Removed wrong info in DBUG output sql/sql_class.cc: cleanup sql/sql_parse.cc: Fixed wrong type
Diffstat (limited to 'sql/sql_class.cc')
-rw-r--r--sql/sql_class.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_class.cc b/sql/sql_class.cc
index 0b596c01f9d..d293a62903d 100644
--- a/sql/sql_class.cc
+++ b/sql/sql_class.cc
@@ -122,7 +122,7 @@ THD::THD():user_time(0),fatal_error(0),last_insert_id_used(0),
server_status=SERVER_STATUS_AUTOCOMMIT;
update_lock_default= low_priority_updates ? TL_WRITE_LOW_PRIORITY : TL_WRITE;
options=thd_startup_options;
- query_cache_type = (byte)query_cache_startup_type;
+ query_cache_type = (byte) query_cache_startup_type;
sql_mode=(uint) opt_sql_mode;
inactive_timeout=net_wait_timeout;
open_options=ha_open_options;