We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41c8a87 commit 3e7bb1aCopy full SHA for 3e7bb1a
src/main/java/org/springframework/data/r2dbc/dialect/PostgresDialect.java
@@ -66,6 +66,9 @@ public class PostgresDialect extends org.springframework.data.relational.core.di
66
// conditional Postgres JSON support.
67
ifClassPresent("io.r2dbc.postgresql.codec.Json", simpleTypes::add);
68
69
+ // conditional Postgres Interval support
70
+ ifClassPresent("io.r2dbc.postgresql.codec.Interval", simpleTypes::add);
71
+
72
SIMPLE_TYPES = simpleTypes;
73
}
74
0 commit comments