Skip to content

Commit f9b81e1

Browse files
authored
Merge pull request #155 from jseibert/patch-1
Fix infinite recursion in MySQLCharacterSet.description
2 parents 198576a + 9ea1902 commit f9b81e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/MySQL/Protocol/MySQLCharacterSet.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ extension MySQLCharacterSet: CustomStringConvertible {
3030
case .latin1_swedish_ci: return "latin1_swedish_ci"
3131
case .utf8_general_ci: return "utf8_general_ci"
3232
case .binary: return "binary"
33-
default: return "unknown \(self)"
33+
default: return "unknown \(self.raw)"
3434
}
3535
}
3636
}

0 commit comments

Comments
 (0)