Skip to content

Commit b7f9d7c

Browse files
slutmakermp911de
authored andcommitted
Add Interval to Postgres simple types.
io.r2dbc.postgresql.codec.Interval is now considered a simple type. Closes #573 Original pull request: #574.
1 parent 41c8a87 commit b7f9d7c

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

src/main/java/org/springframework/data/r2dbc/dialect/PostgresDialect.java

+3
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ public class PostgresDialect extends org.springframework.data.relational.core.di
6666
// conditional Postgres JSON support.
6767
ifClassPresent("io.r2dbc.postgresql.codec.Json", simpleTypes::add);
6868

69+
// conditional Postgres Interval support
70+
ifClassPresent("io.r2dbc.postgresql.codec.Interval", simpleTypes::add);
71+
6972
SIMPLE_TYPES = simpleTypes;
7073
}
7174

src/test/java/org/springframework/data/r2dbc/core/PostgresIntegrationTests.java

+34
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import io.r2dbc.postgresql.codec.Box;
2424
import io.r2dbc.postgresql.codec.Circle;
2525
import io.r2dbc.postgresql.codec.EnumCodec;
26+
import io.r2dbc.postgresql.codec.Interval;
2627
import io.r2dbc.postgresql.codec.Line;
2728
import io.r2dbc.postgresql.codec.Lseg;
2829
import io.r2dbc.postgresql.codec.Path;
@@ -34,6 +35,7 @@
3435
import lombok.Data;
3536
import reactor.test.StepVerifier;
3637

38+
import java.time.Duration;
3739
import java.util.Arrays;
3840
import java.util.Collections;
3941
import java.util.List;
@@ -245,6 +247,27 @@ void shouldReadAndWriteGeoTypes() {
245247
assertThat(saved).isEqualTo(loaded);
246248
}
247249

250+
@Test // gh-573
251+
void shouldReadAndWriteInterval() {
252+
EntityWithInterval entityWithInterval = new EntityWithInterval();
253+
entityWithInterval.interval = Interval.of(Duration.ofHours(3));
254+
255+
template.execute("DROP TABLE IF EXISTS with_interval");
256+
template.execute("CREATE TABLE with_interval (" //
257+
+ "id serial PRIMARY KEY," //
258+
+ "interval INTERVAL" //
259+
+ ")");
260+
261+
R2dbcEntityTemplate template = new R2dbcEntityTemplate(client,
262+
new DefaultReactiveDataAccessStrategy(PostgresDialect.INSTANCE));
263+
264+
EntityWithInterval saved = template.insert(entityWithInterval).block();
265+
EntityWithInterval loaded = template.select(Query.empty(), EntityWithInterval.class) //
266+
.blockLast();
267+
268+
assertThat(saved.interval).isEqualTo(loaded.interval);
269+
}
270+
248271
private void insert(EntityWithArrays object) {
249272

250273
client.insert() //
@@ -300,4 +323,15 @@ static class GeoType {
300323
org.springframework.data.geo.Point springDataPoint;
301324
org.springframework.data.geo.Polygon springDataPolygon;
302325
}
326+
327+
@Data
328+
@Table("with_interval")
329+
static class EntityWithInterval {
330+
331+
@Id Integer id;
332+
333+
Interval interval;
334+
335+
}
336+
303337
}

0 commit comments

Comments
 (0)