birschick-bq commented on code in PR #1849:
URL: https://github.com/apache/arrow-adbc/pull/1849#discussion_r1596113152
##########
csharp/src/Drivers/Apache/Hive2/HiveServer2Statement.cs:
##########
@@ -123,9 +138,23 @@ protected async ValueTask<Schema> GetSchemaAsync()
return SchemaParser.GetArrowSchema(response.Schema);
}
- protected internal int PollTimeMilliseconds { get; } =
PollTimeMillisecondsDefault;
+ protected internal int PollTimeMilliseconds { get; private set; } =
PollTimeMillisecondsDefault;
+
+ protected internal int BatchSize { get; private set; } =
BatchSizeDefault;
+
+ public static class StatementOptions
Review Comment:
Making this `public` seems like the best choice. But if you think it should
be private, let me know.
--
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]