mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
53310c6ee7
- CTRL-C now aborts 'source' commands in mysql client - Fix that thread id's are removed in convert-debug-for-diff.sh client/mysql.cc: CTRL-C now aborts 'source' commands scripts/convert-debug-for-diff.sh: Fix expression to remove thread id storage/maria/ha_maria.cc: Don't call DBUG_ASSERT() when we kill a query during REPAIR / ALTER TABLE storage/maria/ma_bitmap.c: Added DBUG_ASSERT() if we call _ma_bitmap_set_full_page_bits() storage/maria/ma_key_recover.c: Don't do an assert if table is marked crashed. storage/maria/ma_recovery.c: Added DBUG_ENTER
25 lines
755 B
Bash
Executable file
25 lines
755 B
Bash
Executable file
#!/usr/bin/perl -i
|
|
#
|
|
# This script converts all numbers that look like addresses or memory sizes,
|
|
# in a debug files generated by --debug (like mysqld --debug), to #.
|
|
# The script also deletes all thread id's from the start of the line.
|
|
|
|
# This allows you to easily compare the files (for example with diff)
|
|
# to find out what changes between different executions.
|
|
# This is extremely useful for comparing two mysqld versions to see
|
|
# why things now work differently.
|
|
|
|
# The script converts the files in place.
|
|
#
|
|
# Typical usage:
|
|
#
|
|
# convert-debug-for-diff /tmp/mysqld.trace /tmp/mysqld-old.trace
|
|
# diff /tmp/mysqld.trace /tmp/mysqld-old.trace
|
|
|
|
while (<>)
|
|
{
|
|
s/^T@[0-9]+\s*://g;
|
|
s/0x[0-9a-f]+(\s|\n|\))/#$1/g;
|
|
s/size: [0-9]+/size: #/g;
|
|
print $_;
|
|
}
|