Skip to content

Commit 30b13cd

Browse files
committed
Correct escaping
1 parent 46db301 commit 30b13cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dump.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ type dump struct {
3434
wg sync.WaitGroup
3535
}
3636

37-
const version = "0.3.1"
37+
const version = "0.3.2"
3838

3939
const headerTmpl = `-- Go SQL Dump {{ .DumpVersion }}
4040
--

sanitize.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ func mysqlReplacer() *strings.Replacer {
1616
// "\t", "\\t",
1717
"\x1A", "\\Z", // ASCII 26 == x1A
1818
"\\", "\\\\",
19-
"%", "\\%",
19+
// "%", "\\%",
2020
// "_", "\\_",
2121
)
2222
}

0 commit comments

Comments
 (0)