We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4d4dab commit 0e8690aCopy full SHA for 0e8690a
infile.go
@@ -32,7 +32,7 @@ func init() {
32
// Alternatively you can allow the use of all local files with
33
// the DSN parameter 'allowAllFiles=true'
34
func RegisterLocalFile(filepath string) {
35
- fileRegister[filepath] = true
+ fileRegister[strings.Trim(filepath, `"`)] = true
36
}
37
38
// RegisterReaderHandler registers a handler function which is used
@@ -62,6 +62,7 @@ func (mc *mysqlConn) handleInFileRequest(name string) (err error) {
62
63
64
} else { // File
65
+ name = strings.Trim(name, `"`)
66
if fileRegister[name] || mc.cfg.params[`allowAllFiles`] == `true` {
67
rdr, err = os.Open(name)
68
} else {
0 commit comments