diff options
author | unknown <kostja@bodhi.(none)> | 2007-08-16 21:54:41 +0400 |
---|---|---|
committer | unknown <kostja@bodhi.(none)> | 2007-08-16 21:54:41 +0400 |
commit | d811750fe890293970be9cd8d7b73258dd280da5 (patch) | |
tree | cabd2b3cbdc7e2af16066c2ab7710723ae40e859 /sql/log_event.h | |
parent | 81e54a4f3dfea157fe6d20643190abe2819d9241 (diff) | |
download | mariadb-git-d811750fe890293970be9cd8d7b73258dd280da5.tar.gz |
Last tweak for doxygen cleanup. The number of doxygen warnings is 0 now.
sql/log_event.h:
Add doxygen documentation.
Restore a text which had no influence on doxygen.
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index 203961c628e..c93bfa32029 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -13,6 +13,15 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +/** + @addtogroup Replication + @{ + + @file + + Binary log event definitions. +*/ + #ifndef _log_event_h #define _log_event_h @@ -435,7 +444,7 @@ struct sql_ex_info ((ULL(1) << 14) | (ULL(1) << 26) | (ULL(1) << 27) | (ULL(1) << 19)) #if OPTIONS_WRITTEN_TO_BIN_LOG != EXPECTED_OPTIONS -#error +#error OPTIONS_WRITTEN_TO_BIN_LOG must NOT change their values! #endif #undef EXPECTED_OPTIONS /* You shouldn't use this one */ @@ -2634,4 +2643,8 @@ static inline bool copy_event_cache_to_file_and_reinit(IO_CACHE *cache, reinit_io_cache(cache, WRITE_CACHE, 0, FALSE, TRUE); } +/** + @} (end of group Replication) +*/ + #endif /* _log_event_h */ |