ENH: native UUID-support for SqlServer

This commit is contained in:
Roland Praml
2018-03-02 01:14:42 +01:00
parent b642b3c644
commit 9953ef35eb
2 changed files with 7 additions and 0 deletions
@@ -20,6 +20,9 @@ public class ScalarTypeUUIDNative extends ScalarTypeUUIDBase {
if (value == null) {
return null;
}
if (value instanceof String) {
return UUID.fromString((String) value);
}
return (UUID) value;
}