@@ -301,7 +301,7 @@ This reference table shows the type mapping between [PostgreSQL][p] and Java dat
301
301
302
302
| PostgreSQL Type | Supported Data Type |
303
303
| :------------------------------------------------| :----------------------------------------------------------------------------------------------------------------------------------------------|
304
- | [ ` bigint ` ] [ psql-bigint-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 ] |
304
+ | [ ` bigint ` ] [ psql-bigint-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 ] , [ ` BigInteger ` ] [ java-biginteger-ref ] |
305
305
| [ ` bit ` ] [ psql-bit-ref ] | Not yet supported.|
306
306
| [ ` bit varying ` ] [ psql-bit-ref ] | Not yet supported.|
307
307
| [ ` boolean or bool ` ] [ psql-boolean-ref ] | [ ` Boolean ` ] [ java-boolean-ref ] |
@@ -312,9 +312,9 @@ This reference table shows the type mapping between [PostgreSQL][p] and Java dat
312
312
| [ ` cidr ` ] [ psql-cidr-ref ] | Not yet supported.|
313
313
| [ ` circle ` ] [ psql-circle-ref ] | Not yet supported.|
314
314
| [ ` date ` ] [ psql-date-ref ] | [ ` LocalDate ` ] [ java-ld-ref ] |
315
- | [ ` double precision ` ] [ psql-floating-point-ref ] | [ ** ` Double ` ** ] [ java-double-ref ] , [ ` Float ` ] [ java-float-ref ] , [ ` Boolean ` ] [ java-boolean-ref ] , [ ` Byte ` ] [ java-byte-ref ] , [ ` Short ` ] [ java-short-ref ] , [ ` Integer ` ] [ java-integer-ref ] , [ ` Long ` ] [ java-long-ref ] , [ ` BigDecimal ` ] [ java-bigdecimal-ref ] |
315
+ | [ ` double precision ` ] [ psql-floating-point-ref ] | [ ** ` Double ` ** ] [ java-double-ref ] , [ ` Float ` ] [ java-float-ref ] , [ ` Boolean ` ] [ java-boolean-ref ] , [ ` Byte ` ] [ java-byte-ref ] , [ ` Short ` ] [ java-short-ref ] , [ ` Integer ` ] [ java-integer-ref ] , [ ` Long ` ] [ java-long-ref ] , [ ` BigDecimal ` ] [ java-bigdecimal-ref ] , [ ` BigInteger ` ] [ java-biginteger-ref ] |
316
316
| [ ` inet ` ] [ psql-inet-ref ] | [ ** ` InetAddress ` ** ] [ java-inet-ref ] |
317
- | [ ` integer ` ] [ psql-integer-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 ] |
317
+ | [ ` integer ` ] [ psql-integer-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 ] , [ ` BigInteger ` ] [ java-biginteger-ref ] |
318
318
| [ ` interval ` ] [ psql-interval-ref ] | Not yet supported.|
319
319
| [ ` json ` ] [ psql-json-ref ] | ** ` Json ` ** , [ ` String ` ] [ java-string-ref ] . Reading: ` ByteBuf ` [ ` byte[] ` ] [ java-primitive-ref ] , [ ` ByteBuffer ` ] [ java-ByteBuffer-ref ] , [ ` String ` ] [ java-string-ref ] , [ ` InputStream ` ] [ java-inputstream-ref ] |
320
320
| [ ` jsonb ` ] [ psql-json-ref ] | ** ` Json ` ** , [ ` String ` ] [ java-string-ref ] . Reading: ` ByteBuf ` [ ` byte[] ` ] [ java-primitive-ref ] , [ ` ByteBuffer ` ] [ java-ByteBuffer-ref ] , [ ` String ` ] [ java-string-ref ] , [ ` InputStream ` ] [ java-inputstream-ref ] |
@@ -323,16 +323,16 @@ This reference table shows the type mapping between [PostgreSQL][p] and Java dat
323
323
| [ ` macaddr ` ] [ psql-macaddr-ref ] | Not yet supported.|
324
324
| [ ` macaddr8 ` ] [ psql-macaddr8-ref ] | Not yet supported.|
325
325
| [ ` money ` ] [ psql-money-ref ] | Not yet supported.|
326
- | [ ` numeric ` ] [ psql-bignumeric-ref ] | [ ` BigDecimal ` ] [ java-bigdecimal-ref ] , [ ` Boolean ` ] [ java-boolean-ref ] , [ ` Byte ` ] [ java-byte-ref ] , [ ` Short ` ] [ java-short-ref ] , [ ` Integer ` ] [ java-integer-ref ] , [ ` Long ` ] [ java-long-ref ] |
327
- | [ ` oid ` ] [ psql-oid-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 ] |
326
+ | [ ` numeric ` ] [ psql-bignumeric-ref ] | [ ` BigDecimal ` ] [ java-bigdecimal-ref ] , [ ` Boolean ` ] [ java-boolean-ref ] , [ ` Byte ` ] [ java-byte-ref ] , [ ` Short ` ] [ java-short-ref ] , [ ` Integer ` ] [ java-integer-ref ] , [ ` Long ` ] [ java-long-ref ] , [ ` BigInteger ` ] [ java-biginteger-ref ] |
327
+ | [ ` oid ` ] [ psql-oid-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 ] , [ ` BigInteger ` ] [ java-biginteger-ref ] |
328
328
| [ ` path ` ] [ psql-path-ref ] | Not yet supported.|
329
329
| [ ` pg_lsn ` ] [ psql-pg_lsn-ref ] | Not yet supported.|
330
330
| [ ` point ` ] [ psql-point-ref ] | Not yet supported.|
331
331
| [ ` polygon ` ] [ psql-polygon-ref ] | Not yet supported.|
332
- | [ ` real ` ] [ psql-real-ref ] | [ ** ` Float ` ** ] [ java-float-ref ] , [ ` Double ` ] [ java-double-ref ] , [ ` Boolean ` ] [ java-boolean-ref ] , [ ` Byte ` ] [ java-byte-ref ] , [ ` Short ` ] [ java-short-ref ] , [ ` Integer ` ] [ java-integer-ref ] , [ ` Long ` ] [ java-long-ref ] , [ ` BigDecimal ` ] [ java-bigdecimal-ref ] |
333
- | [ ` 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 ] |
334
- | [ ` 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 ] |
335
- | [ ` 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 ] |
332
+ | [ ` real ` ] [ psql-real-ref ] | [ ** ` Float ` ** ] [ java-float-ref ] , [ ` Double ` ] [ java-double-ref ] , [ ` Boolean ` ] [ java-boolean-ref ] , [ ` Byte ` ] [ java-byte-ref ] , [ ` Short ` ] [ java-short-ref ] , [ ` Integer ` ] [ java-integer-ref ] , [ ` Long ` ] [ java-long-ref ] , [ ` BigDecimal ` ] [ java-bigdecimal-ref ] , [ ` BigInteger ` ] [ java-biginteger-ref ] |
333
+ | [ ` 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 ] , [ ` BigInteger ` ] [ java-biginteger-ref ] |
334
+ | [ ` 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 ] , [ ` BigInteger ` ] [ java-biginteger-ref ] |
335
+ | [ ` 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 ] , [ ` BigInteger ` ] [ java-biginteger-ref ] |
336
336
| [ ` text ` ] [ psql-text-ref ] | [ ** ` String ` ** ] [ java-string-ref ] , [ ` Clob ` ] [ r2dbc-clob-ref ] |
337
337
| [ ` time [without time zone] ` ] [ psql-time-ref ] | [ ` LocalTime ` ] [ java-lt-ref ] |
338
338
| [ ` time [with time zone] ` ] [ psql-time-ref ] | Not yet supported.|
@@ -396,6 +396,7 @@ Support for the following single-dimensional arrays (read and write):
396
396
[ r2dbc-clob-ref ] : https://r2dbc.io/spec/0.8.0.RELEASE/api/io/r2dbc/spi/Clob.html
397
397
398
398
[ java-bigdecimal-ref ] : https://docs.oracle.com/javase/8/docs/api/java/math/BigDecimal.html
399
+ [ java-biginteger-ref ] : https://docs.oracle.com/javase/8/docs/api/java/math/BigInteger.html
399
400
[ java-boolean-ref ] : https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html
400
401
[ java-byte-ref ] : https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html
401
402
[ java-ByteBuffer-ref ] : https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html
0 commit comments