diff options
author | monty@hundin.mysql.fi <> | 2001-08-11 01:42:34 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-08-11 01:42:34 +0300 |
commit | 79131084c8367f85bb9be83d0cf8fd76526ed30f (patch) | |
tree | cccf6b1dc41e678eddad6f48981bf82d6b935148 /scripts | |
parent | 65a711f40f8b64246cd4a18745552bc22e621f23 (diff) | |
download | mariadb-git-79131084c8367f85bb9be83d0cf8fd76526ed30f.tar.gz |
Fixed handling of strings in mysqldumpslow
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysqldumpslow.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/mysqldumpslow.sh b/scripts/mysqldumpslow.sh index 02b5d5cd0cd..856c8a09b5e 100644 --- a/scripts/mysqldumpslow.sh +++ b/scripts/mysqldumpslow.sh @@ -3,6 +3,7 @@ # Original version by Tim Bunce, sometime in 2000. # Further changes by Tim Bunce, 8th March 2001. +# Handling of strings with \ and double '' by Monty 11 Aug 2001. use strict; use Getopt::Long; @@ -95,8 +96,8 @@ while ( defined($_ = shift @pending) or defined($_ = <>) ) { unless ($opt{a}) { s/\b\d+\b/N/g; s/\b0x[0-9A-Fa-f]+\b/N/g; - s/'.*?'/'S'/g; - s/".*?"/"S"/g; + s/'([^\\\']|\\.|\'\')+'/'S'/g; + s/"([^\\\"]|\\.|\"\")+"/"S"/g; # -n=8: turn log_20001231 into log_NNNNNNNN s/([a-z_]+)(\d{$opt{n},})/$1.('N' x length($2))/ieg if $opt{n}; # abbreviate massive "in (...)" statements and similar |