File tree 1 file changed +3
-0
lines changed
spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/mapping
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 31
31
import java .util .Set ;
32
32
import java .util .UUID ;
33
33
34
+ import org .springframework .data .jdbc .core .convert .JdbcValue ;
34
35
import org .springframework .data .mapping .model .SimpleTypeHolder ;
35
36
36
37
/**
37
38
* Simple constant holder for a {@link SimpleTypeHolder} enriched with specific simple types for relational database
38
39
* access.
39
40
*
40
41
* @author Mark Paluch
42
+ * @author Jens Schauder
41
43
*/
42
44
public abstract class JdbcSimpleTypes {
43
45
@@ -67,6 +69,7 @@ public abstract class JdbcSimpleTypes {
67
69
simpleTypes .add (Time .class );
68
70
simpleTypes .add (Timestamp .class );
69
71
simpleTypes .add (UUID .class );
72
+ simpleTypes .add (JdbcValue .class );
70
73
71
74
JDBC_SIMPLE_TYPES = Collections .unmodifiableSet (simpleTypes );
72
75
}
You can’t perform that action at this time.
0 commit comments