We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6db939b commit a88c17eCopy full SHA for a88c17e
trino/client.py
@@ -522,7 +522,7 @@ def http_headers(self) -> CaseInsensitiveDict[str]:
522
headers[constants.HEADER_ENCODING] = self._client_session.encoding
523
else:
524
raise ValueError("Invalid type for encoding: expected str or list")
525
- headers[constants.HEADER_CLIENT_CAPABILITIES] = 'PARAMETRIC_DATETIME'
+ headers[constants.HEADER_CLIENT_CAPABILITIES] = 'PARAMETRIC_DATETIME,SESSION_AUTHORIZATION'
526
headers["user-agent"] = f"{constants.CLIENT_NAME}/{__version__}"
527
if len(self._client_session.roles.values()):
528
headers[constants.HEADER_ROLE] = ",".join(
0 commit comments