@@ -291,7 +291,7 @@ This reference table shows the type mapping between [PostgreSQL][p] and Java dat
291
291
| [ ` bit varying ` ] [ psql-bit-ref ] | Not yet supported.|
292
292
| [ ` boolean or bool ` ] [ psql-boolean-ref ] | [ ` Boolean ` ] [ java-boolean-ref ] |
293
293
| [ ` box ` ] [ psql-box-ref ] | Not yet supported.|
294
- | [ ` bytea ` ] [ psql-bytea-ref ] | [ ** ` ByteBuffer ` ** ] [ java-ByteBuffer-ref ] , [ ` byte[] ` ] [ java-byte-ref ] , ` Blob ` |
294
+ | [ ` bytea ` ] [ psql-bytea-ref ] | [ ** ` ByteBuffer ` ** ] [ java-ByteBuffer-ref ] , [ ` byte[] ` ] [ java-byte-ref ] , [ ` Blob ` ] [ r2dbc-blob-ref ] |
295
295
| [ ` character ` ] [ psql-character-ref ] | [ ` String ` ] [ java-string-ref ] |
296
296
| [ ` character varying ` ] [ psql-character-ref ] | [ ` String ` ] [ java-string-ref ] |
297
297
| [ ` cidr ` ] [ psql-cidr-ref ] | Not yet supported.|
@@ -318,7 +318,7 @@ This reference table shows the type mapping between [PostgreSQL][p] and Java dat
318
318
| [ ` smallint ` ] [ psql-smallint-ref ] | [ ** ` Short ` ** ] [ java-short-ref ] , [ ` Boolean ` ] [ java-boolean-ref ] , [ ` Byte ` ] [ java-byte-ref ] , [ ` Integer ` ] [ java-integer-ref ] , [ ` Long ` ] [ java-long-ref ] , [ ` BigDecimal ` ] [ java-bigdecimal-ref ] |
319
319
| [ ` smallserial ` ] [ psql-smallserial-ref ] | [ ** ` Integer ` ** ] [ java-integer-ref ] , [ ` Boolean ` ] [ java-boolean-ref ] , [ ` Byte ` ] [ java-byte-ref ] , [ ` Short ` ] [ java-short-ref ] , [ ` Long ` ] [ java-long-ref ] , [ ` BigDecimal ` ] [ java-bigdecimal-ref ] |
320
320
| [ ` serial ` ] [ psql-serial-ref ] | [ ** ` Long ` ** ] [ java-long-ref ] , [ ` Boolean ` ] [ java-boolean-ref ] , [ ` Byte ` ] [ java-byte-ref ] , [ ` Short ` ] [ java-short-ref ] , [ ` Integer ` ] [ java-integer-ref ] , [ ` BigDecimal ` ] [ java-bigdecimal-ref ] |
321
- | [ ` text ` ] [ psql-text-ref ] | [ ** ` String ` ** ] [ java-string-ref ] , ` Clob ` |
321
+ | [ ` text ` ] [ psql-text-ref ] | [ ** ` String ` ** ] [ java-string-ref ] , [ ` Clob ` ] [ r2dbc-clob-ref ] |
322
322
| [ ` time [without time zone] ` ] [ psql-time-ref ] | [ ` LocalTime ` ] [ java-lt-ref ] |
323
323
| [ ` time [with time zone] ` ] [ psql-time-ref ] | Not yet supported.|
324
324
| [ ` timestamp [without time zone] ` ] [ psql-time-ref ] | [ ** ` LocalDateTime ` ** ] [ java-ldt-ref ] , [ ` LocalTime ` ] [ java-lt-ref ] , [ ` LocalDate ` ] [ java-ld-ref ] , [ ` java.util.Date ` ] [ java-legacy-date-ref ] |
@@ -377,7 +377,8 @@ Support for the following single-dimensional arrays (read and write):
377
377
[ psql-xml-ref ] : https://www.postgresql.org/docs/11/datatype-xml.html
378
378
[ psql-runtime-config ] : https://www.postgresql.org/docs/current/runtime-config-client.html
379
379
380
-
380
+ [ r2dbc-blob-ref ] : https://r2dbc.io/spec/0.8.0.RELEASE/api/io/r2dbc/spi/Blob.html
381
+ [ r2dbc-clob-ref ] : https://r2dbc.io/spec/0.8.0.RELEASE/api/io/r2dbc/spi/Clob.html
381
382
382
383
[ java-bigdecimal-ref ] : https://docs.oracle.com/javase/8/docs/api/java/math/BigDecimal.html
383
384
[ java-boolean-ref ] : https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html
0 commit comments