diff options
author | unknown <serg@serg.mylan> | 2003-11-14 13:50:19 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-11-14 13:50:19 +0100 |
commit | 9d417b7b798d02fed49efdf4ce7c4ea86c083ddd (patch) | |
tree | 4e615aae656322a66459edd897ffb6cbd7a2950a /sql/sql_class.h | |
parent | 1d64a3d55f482c9e48da0931eb6bcbc5e91ae9b3 (diff) | |
download | mariadb-git-9d417b7b798d02fed49efdf4ce7c4ea86c083ddd.tar.gz |
do not log certain commans in the slow log
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 7a8dc067256..b19caf057e6 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -509,7 +509,7 @@ public: PREP_STMT *last_prepared_stmt; #ifndef DBUG_OFF uint dbug_sentry; // watch out for memory corruption -#endif +#endif struct st_my_thread_var *mysys_var; enum enum_server_command command; uint32 server_id; @@ -531,9 +531,9 @@ public: THD_TRANS stmt; // Trans for current statement uint bdb_lock_count; - /* + /* Tables changed in transaction (that must be invalidated in query cache). - List contain only transactional tables, that not invalidated in query + List contain only transactional tables, that not invalidated in query cache (instead of full list of changed in transaction tables). */ CHANGED_TABLE_LIST* changed_tables; @@ -551,7 +551,7 @@ public: #endif #ifdef SIGNAL_WITH_VIO_CLOSE Vio* active_vio; -#endif +#endif /* next_insert_id is set on SET INSERT_ID= #. This is used as the next generated auto_increment value in handler.cc @@ -573,9 +573,9 @@ public: sent_row_count, examined_row_count; table_map used_tables; USER_CONN *user_connect; - CHARSET_INFO *db_charset; + CHARSET_INFO *db_charset; List<TABLE> temporary_tables_should_be_free; // list of temporary tables - List <MYSQL_ERROR> warn_list; + List <MYSQL_ERROR> warn_list; uint warn_count[(uint) MYSQL_ERROR::WARN_LEVEL_END]; uint total_warn_count; ulong query_id, warn_id, version, options, thread_id, col_access; @@ -609,6 +609,7 @@ public: bool prepare_command; bool tmp_table_used; bool charset_is_system_charset, charset_is_collation_connection; + bool slow_command; /* If we do a purge of binary logs, log index info of the threads |