diff options
author | tomas@poseidon.ndb.mysql.com <> | 2006-01-13 03:17:09 +0100 |
---|---|---|
committer | tomas@poseidon.ndb.mysql.com <> | 2006-01-13 03:17:09 +0100 |
commit | e648a8fe522ce2994d42dee07d45d5dd18118c80 (patch) | |
tree | 7e2361fa57ec29b4801470a68a8d09ff0dd92ec8 /include/my_base.h | |
parent | be993c9a234fbda0ee1c45c48b0f5d0d2961128b (diff) | |
parent | 46b867757a563653a41fbc1f02530980813f321e (diff) | |
download | mariadb-git-e648a8fe522ce2994d42dee07d45d5dd18118c80.tar.gz |
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into poseidon.ndb.mysql.com:/home/tomas/v7
Diffstat (limited to 'include/my_base.h')
-rw-r--r-- | include/my_base.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/my_base.h b/include/my_base.h index a9700639cb0..cb82bfef531 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -154,7 +154,14 @@ enum ha_extra_function { to overwrite entire row. */ HA_EXTRA_KEYREAD_PRESERVE_FIELDS, - HA_EXTRA_MMAP + HA_EXTRA_MMAP, + /* + Ignore if the a tuple is not found, continue processing the + transaction and ignore that 'row'. Needed for idempotency + handling on the slave + */ + HA_EXTRA_IGNORE_NO_KEY, + HA_EXTRA_NO_IGNORE_NO_KEY }; /* The following is parameter to ha_panic() */ |