Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Update java8-date-time.md
- Loading branch information
Showing
with
4 additions
and
4 deletions.
-
+4
−4
docs/documentation/head/java8-date-time.md
|
@@ -27,23 +27,23 @@ The PostgreSQL™ JDBC driver implements native support for the |
|
|
<td>LocalDate</td> |
|
|
</tr> |
|
|
<tr> |
|
|
<td>TIME [ WITHOUT TIMEZONE ]</td> |
|
|
<td>TIME [ WITHOUT TIME ZONE ]</td> |
|
|
<td>LocalTime</td> |
|
|
</tr> |
|
|
<tr> |
|
|
<td>TIMESTAMP [ WITHOUT TIMEZONE ]</td> |
|
|
<td>TIMESTAMP [ WITHOUT TIME ZONE ]</td> |
|
|
<td>LocalDateTime</td> |
|
|
</tr> |
|
|
<tr> |
|
|
<td>TIMESTAMP WITH TIMEZONE</td> |
|
|
<td>TIMESTAMP WITH TIME ZONE</td> |
|
|
<td>OffsetDateTime</td> |
|
|
</tr> |
|
|
</tbody> |
|
|
</table> |
|
|
|
|
|
This is closely aligned with tables B-4 and B-5 of the JDBC 4.2 specification. |
|
|
Note that `ZonedDateTime`, `Instant` and |
|
|
`OffsetTime / TIME [ WITHOUT TIMEZONE ]` are not supported. Also note |
|
|
`OffsetTime / TIME [ WITHOUT TIME ZONE ]` are not supported. Also note |
|
|
that all `OffsetDateTime` will instances will have be in UTC (have offset 0). |
|
|
This is because the backend stores them as UTC. |
|
|
|
|
|