We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1a8c43 commit 8d06f5eCopy full SHA for 8d06f5e
1 file changed
src/databricks/sql/client.py
@@ -349,7 +349,7 @@ def get_session_id_hex(self):
349
350
@staticmethod
351
def server_parameterized_queries_enabled(protocolVersion):
352
- """Delegate to Session class static method"""
+ """Check if parameterized queries are enabled for the given protocol version"""
353
return Session.server_parameterized_queries_enabled(protocolVersion)
354
355
@property
@@ -359,7 +359,7 @@ def protocol_version(self):
359
360
361
def get_protocol_version(openSessionResp: TOpenSessionResp):
362
+ """Get the protocol version from the OpenSessionResp object"""
363
properties = (
364
{"serverProtocolVersion": openSessionResp.serverProtocolVersion}
365
if openSessionResp.serverProtocolVersion
0 commit comments