Two faster paths for strings and dates
This commit is contained in:
parent
28831c61da
commit
90171ac2d1
1 changed files with 8 additions and 0 deletions
|
|
@ -39,6 +39,14 @@
|
|||
(to-db-object [input]
|
||||
input)
|
||||
|
||||
String
|
||||
(to-db-object [^String input]
|
||||
input)
|
||||
|
||||
java.util.Date
|
||||
(to-db-object [^java.util.Date input]
|
||||
input)
|
||||
|
||||
Ratio
|
||||
(to-db-object [^Ratio input]
|
||||
(double input))
|
||||
|
|
|
|||
Loading…
Reference in a new issue