Skip to content
This repository has been archived by the owner on Dec 8, 2021. It is now read-only.

Commit

Permalink
backend: fix issue 282
Browse files Browse the repository at this point in the history
  • Loading branch information
kennytm committed Mar 16, 2020
1 parent 3c8f4d7 commit 4a2e2c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lightning/backend/tidb.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func (enc tidbEncoder) appendSQLBytes(sb *strings.Builder, value []byte) {
sb.WriteString(`\r`)
case '\t':
sb.WriteString(`\t`)
case 0x26:
case 26:
sb.WriteString(`\Z`)
case '\'':
sb.WriteString(`''`)
Expand Down

0 comments on commit 4a2e2c2

Please sign in to comment.