diff options
author | kostja@bodhi.(none) <> | 2007-08-15 20:11:16 +0400 |
---|---|---|
committer | kostja@bodhi.(none) <> | 2007-08-15 20:11:16 +0400 |
commit | 4f97c96eb2b52b631f70d05e126f0f99376585a8 (patch) | |
tree | a71885cfa242eb0b55c7f5c94a6b1cda1e2aa71d | |
parent | 2537a87fb541e8685aa5021bb745cbfdf9216eec (diff) | |
download | mariadb-git-4f97c96eb2b52b631f70d05e126f0f99376585a8.tar.gz |
Add replication group (comments).
-rw-r--r-- | sql/slave.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sql/slave.h b/sql/slave.h index 731728bde4f..791f95ef7ae 100644 --- a/sql/slave.h +++ b/sql/slave.h @@ -16,6 +16,12 @@ #ifndef SLAVE_H #define SLAVE_H +/** + @defgroup Replication Replication + @{ + + @file +*/ #ifdef HAVE_REPLICATION #include "log.h" @@ -214,6 +220,8 @@ extern I_List<THD> threads; #define SLAVE_IO 1 #define SLAVE_SQL 2 -#endif - +/** + @} (end of group Replication) +*/ +#endif |