Skip to content

Commit 5dc08cf

Browse files
committed
Polishing
Add Javadoc references to Blob and Clob types. [#202]
1 parent ecfd6b6 commit 5dc08cf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ This reference table shows the type mapping between [PostgreSQL][p] and Java dat
291291
| [`bit varying`][psql-bit-ref] | Not yet supported.|
292292
| [`boolean or bool`][psql-boolean-ref] | [`Boolean`][java-boolean-ref]|
293293
| [`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]|
295295
| [`character`][psql-character-ref] | [`String`][java-string-ref]|
296296
| [`character varying`][psql-character-ref] | [`String`][java-string-ref]|
297297
| [`cidr`][psql-cidr-ref] | Not yet supported.|
@@ -318,7 +318,7 @@ This reference table shows the type mapping between [PostgreSQL][p] and Java dat
318318
| [`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]|
319319
| [`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]|
320320
| [`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]|
322322
| [`time [without time zone]`][psql-time-ref] | [`LocalTime`][java-lt-ref]|
323323
| [`time [with time zone]`][psql-time-ref] | Not yet supported.|
324324
| [`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):
377377
[psql-xml-ref]: https://www.postgresql.org/docs/11/datatype-xml.html
378378
[psql-runtime-config]: https://www.postgresql.org/docs/current/runtime-config-client.html
379379

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
381382

382383
[java-bigdecimal-ref]: https://docs.oracle.com/javase/8/docs/api/java/math/BigDecimal.html
383384
[java-boolean-ref]: https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html

0 commit comments

Comments
 (0)