Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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: 3 additions & 3 deletions 6 src/databricks/sql/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,9 +457,9 @@ def execute(
Execute a query and wait for execution to complete.
Parameters should be given in extended param format style: %(...)<s|d|f>.
For example:
operation = "SELECT * FROM %(table_name)s"
parameters = {"table_name": "my_table_name"}
Will result in the query "SELECT * FROM 'my_table_name' being sent to the server
operation = "SELECT * FROM table WHERE field = %(some_value)s"
parameters = {"some_value": "foo"}
Will result in the query "SELECT * FROM table WHERE field = 'foo' being sent to the server
:returns self
"""
if parameters is not None:
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.