diff options
author | unknown <heikki@hundin.mysql.fi> | 2005-01-25 22:11:21 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2005-01-25 22:11:21 +0200 |
commit | 7ff1db2d6262494380885d2a5b68d4e099f31c9e (patch) | |
tree | 4d99fb4741c15a68c5f9010ff6d452600f686d8e /sql/sql_class.h | |
parent | d3db70de4c6027b9ae62b0814cdd45718e58a556 (diff) | |
download | mariadb-git-7ff1db2d6262494380885d2a5b68d4e099f31c9e.tar.gz |
sql_class.h, set_var.cc, mysqld.cc:
Add settable variables for semi-sync replication
sql/mysqld.cc:
Add settable variables for semi-sync replication
sql/set_var.cc:
Add settable variables for semi-sync replication
sql/sql_class.h:
Add settable variables for semi-sync replication
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index ce60ed06cfd..8128690ab02 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -397,6 +397,11 @@ struct system_variables my_bool low_priority_updates; my_bool new_mode; my_bool query_cache_wlock_invalidate; +#ifdef HAVE_REPLICATION + ulong sync_replication; + ulong sync_replication_slave_id; + ulong sync_replication_timeout; +#endif /* HAVE_REPLICATION */ #ifdef HAVE_INNOBASE_DB my_bool innodb_table_locks; #endif /* HAVE_INNOBASE_DB */ |