ryan-syed commented on code in PR #3380:
URL: https://github.com/apache/arrow-adbc/pull/3380#discussion_r2317361420
##########
csharp/src/Drivers/Apache/Spark/SparkConnection.cs:
##########
@@ -62,6 +63,11 @@ public override AdbcStatement CreateStatement()
return statement;
}
+ protected override Task<TGetResultSetMetadataResp>
GetResultSetMetadataAsync(IResponse response, CancellationToken
cancellationToken = default) =>
+ GetResultSetMetadataAsync(response.OperationHandle!, Client,
cancellationToken);
+ protected override Task<TRowSet> GetRowSetAsync(IResponse response,
CancellationToken cancellationToken = default) =>
+ FetchResultsAsync(response.OperationHandle!, cancellationToken:
cancellationToken);
+
Review Comment:
Removed the identical definitions.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]