diff options
author | serg@serg.mylan <> | 2006-02-14 22:36:11 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2006-02-14 22:36:11 +0100 |
commit | 63cfd11859c7d6b64ff86787af9686f0c2f925c9 (patch) | |
tree | 1fd1c53fca7673d384fa493bf7a237ffa408bf38 /storage/heap | |
parent | 0eb36bf0158c457bacd709c2aaf3a68e5b9485ef (diff) | |
download | mariadb-git-63cfd11859c7d6b64ff86787af9686f0c2f925c9.tar.gz |
dbug changes:
1. dbug state is now local to a thread
2. new macros: DBUG_EXPLAIN, DBUG_EXPLAIN_INITIAL,
DBUG_SET, DBUG_SET_INITIAL, DBUG_EVALUATE, DBUG_EVALUATE_IF
3. macros are do{}while(0) wrapped
4. incremental modifications to the dbug state (e.g. "+d,info:-t")
5. dbug code cleanup, style fixes
6. _db_on_ and DEBUGGER_ON/OFF removed
7. rest of MySQL code fixed because of 3 (missing ;) and 6
8. dbug manual updated
9. server variable @@debug (global and local) to control dbug from SQL!
a. -#T to print timestamps in the log
Diffstat (limited to 'storage/heap')
-rw-r--r-- | storage/heap/hp_test2.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/storage/heap/hp_test2.c b/storage/heap/hp_test2.c index 2de49bcb66b..a74872dbd11 100644 --- a/storage/heap/hp_test2.c +++ b/storage/heap/hp_test2.c @@ -617,7 +617,6 @@ err: static int get_options(int argc,char *argv[]) { char *pos,*progname; - DEBUGGER_OFF; progname= argv[0]; @@ -646,7 +645,6 @@ static int get_options(int argc,char *argv[]) printf("Usage: %s [-?ABIKLsWv] [-m#] [-t#]\n",progname); exit(0); case '#': - DEBUGGER_ON; DBUG_PUSH (++pos); break; } |