diff options
author | Michael Widenius <monty@mysql.com> | 2010-08-18 10:52:57 +0300 |
---|---|---|
committer | Michael Widenius <monty@mysql.com> | 2010-08-18 10:52:57 +0300 |
commit | 909e4eb08d7ea38cf09575756cff79648e326fd5 (patch) | |
tree | 84729e5a7b409cbe8b58a888fb76762ed3900f0d /storage/maria/maria_def.h | |
parent | 6795a545e382a2de7104cdc57e0a2834e4aa9b67 (diff) | |
download | mariadb-git-909e4eb08d7ea38cf09575756cff79648e326fd5.tar.gz |
Added verbose mode to recovery
More DBUG
Added convert-debug-for-diff
Added missing (from last push) federated test case
.bzrignore:
Ignore generated files
mysql-test/README:
Updated documentation for --extern
mysql-test/suite/federated/federated_bug_32426.result:
Added test for federatedx
mysql-test/suite/federated/federated_bug_32426.test:
Added test for federatedx
scripts/Makefile.am:
Added convert-debug-for-diff
scripts/convert-debug-for-diff.sh:
Added script for converting
sql/log.cc:
Added DBUG
sql/mysqld.cc:
Added DBUG
storage/maria/ma_recovery.c:
If verbose, write dirty pages (for debugging)
storage/maria/ma_static.c:
Added verbose mode to recovery
storage/maria/maria_def.h:
Added verbose mode to recovery
storage/maria/maria_read_log.c:
Added verbose mode to recovery
Diffstat (limited to 'storage/maria/maria_def.h')
-rw-r--r-- | storage/maria/maria_def.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/maria/maria_def.h b/storage/maria/maria_def.h index e9980cf9695..8c2ce447a36 100644 --- a/storage/maria/maria_def.h +++ b/storage/maria/maria_def.h @@ -797,6 +797,7 @@ extern uint maria_quick_table_bits; extern char *maria_data_root; extern uchar maria_zero_string[]; extern my_bool maria_inited, maria_in_ha_maria, maria_recovery_changed_data; +extern my_bool maria_recovery_verbose; extern HASH maria_stored_state; extern int (*maria_create_trn_hook)(MARIA_HA *); |