diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-06-28 18:22:29 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-06-28 18:22:29 -0600 |
commit | c7e200cdd8fcb0429442f6441e42500fea8f899c (patch) | |
tree | cb4a8d96c0034fc1d1761a36370587c6845aae72 /BitKeeper | |
parent | 91239689e55a7cf8cc245f8311ed6e59a4d195b1 (diff) | |
download | mariadb-git-c7e200cdd8fcb0429442f6441e42500fea8f899c.tar.gz |
fixed message in post-commit trigger
added debugging options to master to behave sporadically, and a
test case to make sure the slave can deal with it
BitKeeper/triggers/post-commit:
fixed message
sql/mysqld.cc:
added debugging options to force the master to occasionally break
replication
sql/slave.cc:
cosmetic change to improve readability
sql/sql_repl.cc:
support for --sporadic-binlog-dump-fail and --max-binlog-dump-events
sql/sql_repl.h:
support for --sporadic-binlog-dump-fail and --max-binlog-dump-events
Diffstat (limited to 'BitKeeper')
-rwxr-xr-x | BitKeeper/triggers/post-commit | 9 | ||||
-rw-r--r-- | BitKeeper/triggers/post-incoming | 3 | ||||
-rwxr-xr-x | BitKeeper/triggers/post-outgoing | 3 |
3 files changed, 12 insertions, 3 deletions
diff --git a/BitKeeper/triggers/post-commit b/BitKeeper/triggers/post-commit index 619b6f88cea..dc5f2f2b824 100755 --- a/BitKeeper/triggers/post-commit +++ b/BitKeeper/triggers/post-commit @@ -37,9 +37,12 @@ From: $FROM To: $INTERNALS Subject: bk commit into 3.23 tree -Below is the list of changes that have just been pushed into main -3.23. repository. For information on how to access the repository -see http://www.mysql.com/doc/I/n/Installing_source_tree.html +Below is the list of changes that have just been commited into a local +3.23. repository of $USER. When $USER does a push, they will be +propogaged to the main repository and within 24 hours after the push into +the public repository. For information on how to access +the public repository see +http://www.mysql.com/doc/I/n/Installing_source_tree.html EOF bk changes -v -r+ diff --git a/BitKeeper/triggers/post-incoming b/BitKeeper/triggers/post-incoming new file mode 100644 index 00000000000..f1ea2255de9 --- /dev/null +++ b/BitKeeper/triggers/post-incoming @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "Test: post-incoming works" diff --git a/BitKeeper/triggers/post-outgoing b/BitKeeper/triggers/post-outgoing new file mode 100755 index 00000000000..3fc2cdbad67 --- /dev/null +++ b/BitKeeper/triggers/post-outgoing @@ -0,0 +1,3 @@ +#! /bin/sh + +echo "Test: post-outgoing works" |