Skip to content

Commit c1483dc

Browse files
committed
fix(doc): use colon instead of equals sign in session properties
Signed-off-by: divinerapier <[email protected]>
1 parent 822e88d commit c1483dc

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,13 +183,19 @@ also known as namespace in some environments.
183183

184184
```
185185
Type: string
186-
Valid values: comma-separated list of key=value session properties
186+
Valid values: semicolon-separated list of key:value session properties (e.g. key1:value1;key2:value2)
187187
Default: empty
188188
```
189189

190190
The `session_properties` parameter must contain valid parameters accepted by
191191
the Trino server. Run `SHOW SESSION` in Trino to get the current list.
192192

193+
Example:
194+
195+
```
196+
session_properties=query_max_run_time:2s;query_priority:1
197+
```
198+
193199
##### `custom_client`
194200

195201
```
@@ -256,7 +262,7 @@ http://user@localhost:8080?source=hello&catalog=default&schema=foobar
256262
```
257263

258264
```
259-
https://user@localhost:8443?session_properties=query_max_run_time=10m,query_priority=2
265+
https://user@localhost:8443?session_properties=query_max_run_time:10m;query_priority:2
260266
```
261267

262268
## Data types

0 commit comments

Comments
 (0)