Skip to content
Merged
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
6 changes: 6 additions & 0 deletions docs/src/main/sphinx/client/jdbc.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,3 +246,9 @@ may not be specified using both methods.
- Sets the time zone for the session using the [time zone
passed](https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/time/ZoneId.html#of(java.lang.String)).
Defaults to the timezone of the JVM running the JDBC driver.
* - `legacyPreparedStatements`
- Defaults to `true`. When set to `false`, prepared statements are executed
calling a single `EXECUTE IMMEDIATE` query instead of the standard
`PREPARE <statement>` followed by `EXECUTE <statement>`. This reduces
network overhead and uses smaller HTTP headers and requires Trino 431 or
greater.