Skip to content

Commit 9a9da92

Browse files
committed
No need to panic
1 parent 011beef commit 9a9da92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dump.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ func createTableValues(db *sql.DB, name string) (string, error) {
322322
dataStrings[key] = "NULL"
323323
}
324324
} else {
325-
panic(value)
325+
dataStrings[key] = fmt.Sprint("'", value, "'")
326326
}
327327
}
328328

0 commit comments

Comments
 (0)