diff options
author | unknown <andrey@example.com> | 2006-08-21 17:16:46 +0200 |
---|---|---|
committer | unknown <andrey@example.com> | 2006-08-21 17:16:46 +0200 |
commit | 3e4b79d9cafea4d1e86ddba6c8f5658f4c4ef23c (patch) | |
tree | e084f8220ad01d3f1e9fce545c534964aab984fe /sql/event_db_repository.h | |
parent | e10aed52724e264e41c7382df88b8e9f89b841f1 (diff) | |
download | mariadb-git-3e4b79d9cafea4d1e86ddba6c8f5658f4c4ef23c.tar.gz |
Minor change - fixed function documentation and added
const for two parameters.
sql/event_db_repository.cc:
add a missing documentation of a parameter
add const to two parameters
sql/event_db_repository.h:
Added const to two parameters
Diffstat (limited to 'sql/event_db_repository.h')
-rw-r--r-- | sql/event_db_repository.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/event_db_repository.h b/sql/event_db_repository.h index 898e27fffe1..10f2fa8632c 100644 --- a/sql/event_db_repository.h +++ b/sql/event_db_repository.h @@ -80,7 +80,7 @@ public: open_event_table(THD *thd, enum thr_lock_type lock_type, TABLE **table); int - fill_schema_events(THD *thd, TABLE_LIST *tables, char *db); + fill_schema_events(THD *thd, TABLE_LIST *tables, const char *db); private: void @@ -88,7 +88,7 @@ private: LEX_STRING field_value); bool index_read_for_db_for_i_s(THD *thd, TABLE *schema_table, TABLE *event_table, - char *db); + const char *db); bool table_scan_all_for_i_s(THD *thd, TABLE *schema_table, TABLE *event_table); |