Ignore nulls in varbinary-to-string transform (#606)

This commit is contained in:
Luke Snape 2017-08-07 20:37:37 +01:00 committed by Dimitri Fontaine
parent 38a6b4968d
commit ecd6a8e25c

View File

@ -337,5 +337,6 @@
(or qmynd::*mysql-encoding*
babel::*default-character-encoding*)))
(etypecase string
(null nil)
(string string)
(vector (babel:octets-to-string string)))))