Skip to content

Commit

Permalink
Update docs for Postgres types (#4569)
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusVolkhart committed Aug 28, 2023
1 parent a3f5814 commit 9492d7a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/jvm_postgresql/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,13 @@ CREATE TABLE some_types (
some_time TIME, -- Retrieved as LocalTime
some_timestamp TIMESTAMP, -- Retrieved as LocalDateTime
some_timestamp TIMESTAMPTZ, -- Retrieved as OffsetDateTime
some_json JSON -- Retrieved as String
some_interval INTERVAL -- Retrieved as PGInterval
some_json JSON, -- Retrieved as String
some_jsonb JSONB, -- Retrieved as String
some_interval INTERVAL, -- Retrieved as PGInterval
some_uuid UUID -- Retrieved as UUID
some_bool BOOL, -- Retrieved as Boolean
some_boolean BOOLEAN, -- Retrieved as Boolean
some_bytea BYTEA -- Retrieved as ByteArray
);
```

Expand Down

0 comments on commit 9492d7a

Please sign in to comment.