2010-08-18 09:52:57 +02:00
|
|
|
#!/usr/bin/perl -i
|
|
|
|
#
|
|
|
|
# This script converts all numbers that look like addresses or memory sizes,
|
2011-12-15 22:07:58 +01:00
|
|
|
# in a debug files generated by --debug (like mysqld --debug-dbug), to #.
|
2010-08-18 09:52:57 +02:00
|
|
|
# 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 (<>)
|
|
|
|
{
|
2010-08-23 11:52:57 +02:00
|
|
|
s/^T@[0-9]+\s*://g;
|
2010-08-18 09:52:57 +02:00
|
|
|
s/0x[0-9a-f]+(\s|\n|\))/#$1/g;
|
|
|
|
s/size: [0-9]+/size: #/g;
|
|
|
|
print $_;
|
|
|
|
}
|