Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/runtime/sql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1383,6 +1383,10 @@ We haven't implemented `LOAD DATA INFILE` support yet.

### PostgreSQL-Specific Features

#### `timestamp` without time zone

`timestamp without time zone` (OID 1114) values are decoded as **UTC** so the text and binary paths agree and a bound `Date` round-trips exactly regardless of host timezone. This differs from `node-postgres` and `postgres.js` (and PGlite), which decode `timestamp` as local time — code migrating from those drivers on a non-UTC host will see values shifted by the local offset. `timestamptz` carries an explicit offset and is unaffected.

We haven't implemented these yet:

- `COPY` support
Expand Down