diff options
author | Alexander Nozdrin <alik@sun.com> | 2009-08-12 23:43:20 +0400 |
---|---|---|
committer | Alexander Nozdrin <alik@sun.com> | 2009-08-12 23:43:20 +0400 |
commit | b05eeab59361afc0c7d6c92928c8bab2e996ca7d (patch) | |
tree | 5ed94969ab4d43f1c487d0329c2144e1003b5188 /storage | |
parent | 606c7e0d12e5ae597856483a0e4313793dff4548 (diff) | |
download | mariadb-git-b05eeab59361afc0c7d6c92928c8bab2e996ca7d.tar.gz |
Fix 5.1 build error.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/innodb_plugin/include/btr0cur.h | 2 | ||||
-rw-r--r-- | storage/innodb_plugin/include/trx0types.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/storage/innodb_plugin/include/btr0cur.h b/storage/innodb_plugin/include/btr0cur.h index b2d43ae3254..480a3877e54 100644 --- a/storage/innodb_plugin/include/btr0cur.h +++ b/storage/innodb_plugin/include/btr0cur.h @@ -618,7 +618,7 @@ enum btr_cur_method { hash_node, and might be necessary to update */ BTR_CUR_BINARY, /*!< success using the binary search */ - BTR_CUR_INSERT_TO_IBUF, /*!< performed the intended insert to + BTR_CUR_INSERT_TO_IBUF /*!< performed the intended insert to the insert buffer */ }; diff --git a/storage/innodb_plugin/include/trx0types.h b/storage/innodb_plugin/include/trx0types.h index 08cc9622d02..24cf57d53d5 100644 --- a/storage/innodb_plugin/include/trx0types.h +++ b/storage/innodb_plugin/include/trx0types.h @@ -70,7 +70,7 @@ typedef struct trx_named_savept_struct trx_named_savept_t; enum trx_rb_ctx { RB_NONE = 0, /*!< no rollback */ RB_NORMAL, /*!< normal rollback */ - RB_RECOVERY, /*!< rolling back an incomplete transaction, + RB_RECOVERY /*!< rolling back an incomplete transaction, in crash recovery */ }; |