Skip to content

Commit 6896f93

Browse files
committed
removed dup check for trowset
Signed-off-by: Sai Shree Pradhan <saishree.pradhan@databricks.com>
1 parent d78ffba commit 6896f93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/databricks/sql/result_set.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def __init__(
241241
statement_id=execute_response.command_id.to_hex_guid(),
242242
chunk_id=self.num_downloaded_chunks,
243243
)
244-
if t_row_set and t_row_set.resultLinks:
244+
if t_row_set.resultLinks:
245245
self.num_downloaded_chunks += len(t_row_set.resultLinks)
246246

247247
# Call parent constructor with common attributes

0 commit comments

Comments
 (0)