Skip to content

Commit

Permalink
No parallel download.
Browse files Browse the repository at this point in the history
  • Loading branch information
defectiveAi committed Sep 19, 2024
1 parent 4a87957 commit 1cf0a56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ internal string BuildDebugString(DatabricksSqlQueryable query)

private IAsyncEnumerable<TElement> ExecuteCoreAsync<TElement>(DatabricksStatement databricksStatement, CancellationToken cancellationToken = default)
{
var rows = _databricksSqlWarehouseQueryExecutor.ExecuteStatementAsync(databricksStatement, QueryOptions.WithFormat(Format.JsonArray).WithParallelDownload(), cancellationToken);
var rows = _databricksSqlWarehouseQueryExecutor.ExecuteStatementAsync(databricksStatement, QueryOptions.WithFormat(Format.JsonArray), cancellationToken);
return _sqlRowHydrator.HydrateAsync<TElement>(rows, cancellationToken);
}

Expand Down

0 comments on commit 1cf0a56

Please sign in to comment.