File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
examples/experimental/tests Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 14
14
15
15
def test_sea_async_query_with_cloud_fetch ():
16
16
"""
17
- Test executing a simple query asynchronously using the SEA backend with cloud fetch enabled.
17
+ Test executing a query asynchronously using the SEA backend with cloud fetch enabled.
18
18
19
19
This function connects to a Databricks SQL endpoint using the SEA backend,
20
- executes a query asynchronously with cloud fetch enabled, and verifies that execution completes successfully.
20
+ executes a simple query asynchronously with cloud fetch enabled, and verifies that execution completes successfully.
21
21
"""
22
22
server_hostname = os .environ .get ("DATABRICKS_SERVER_HOSTNAME" )
23
23
http_path = os .environ .get ("DATABRICKS_HTTP_PATH" )
@@ -120,10 +120,10 @@ def test_sea_async_query_with_cloud_fetch():
120
120
121
121
def test_sea_async_query_without_cloud_fetch ():
122
122
"""
123
- Test executing a simple query asynchronously using the SEA backend with cloud fetch disabled.
123
+ Test executing a query asynchronously using the SEA backend with cloud fetch disabled.
124
124
125
125
This function connects to a Databricks SQL endpoint using the SEA backend,
126
- executes a query asynchronously with cloud fetch disabled, and verifies that execution completes successfully.
126
+ executes a simple query asynchronously with cloud fetch disabled, and verifies that execution completes successfully.
127
127
"""
128
128
server_hostname = os .environ .get ("DATABRICKS_SERVER_HOSTNAME" )
129
129
http_path = os .environ .get ("DATABRICKS_HTTP_PATH" )
Original file line number Diff line number Diff line change 12
12
13
13
def test_sea_sync_query_with_cloud_fetch ():
14
14
"""
15
- Test executing a simple query synchronously using the SEA backend with cloud fetch enabled.
15
+ Test executing a query synchronously using the SEA backend with cloud fetch enabled.
16
16
17
17
This function connects to a Databricks SQL endpoint using the SEA backend,
18
- executes a query with cloud fetch enabled, and verifies that execution completes successfully.
18
+ executes a simple query with cloud fetch enabled, and verifies that execution completes successfully.
19
19
"""
20
20
server_hostname = os .environ .get ("DATABRICKS_SERVER_HOSTNAME" )
21
21
http_path = os .environ .get ("DATABRICKS_HTTP_PATH" )
@@ -90,7 +90,7 @@ def test_sea_sync_query_with_cloud_fetch():
90
90
91
91
def test_sea_sync_query_without_cloud_fetch ():
92
92
"""
93
- Test executing a simple query synchronously using the SEA backend with cloud fetch disabled.
93
+ Test executing a query synchronously using the SEA backend with cloud fetch disabled.
94
94
95
95
This function connects to a Databricks SQL endpoint using the SEA backend,
96
96
executes a simple query with cloud fetch disabled, and verifies that execution completes successfully.
You can’t perform that action at this time.
0 commit comments