You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initial support for mapping common column data types (as supported by R2DBC)
Expected Outcome
Figure out what base data types across DBs we should have support for
Include mapping to Java time/data types (LocalDate, LocalDateTime, DateTime etc)
R2DBC drivers for various DBs would need to already support mapping these types to a Java type; or we'd to add mappers
If we decide not to directly support a type, we may need to document for users how their queries should be written to co-erce simpler types to one that is supported (e.g numeric or string)
May want to start by reviewing, say, the R2DBC Postgres or MySQL drivers and looking at what types they produce
Extend HashedRow to know how to hash these types
Out of Scope
Additional context / implementation notes
The text was updated successfully, but these errors were encountered:
Context / Goal
Initial support for mapping common column data types (as supported by R2DBC)
Expected Outcome
LocalDate
,LocalDateTime
,DateTime
etc)HashedRow
to know how to hash these typesOut of Scope
Additional context / implementation notes
The text was updated successfully, but these errors were encountered: