CurtHagenlocher commented on code in PR #1849:
URL: https://github.com/apache/arrow-adbc/pull/1849#discussion_r1598748055


##########
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
+        {
+            public const string PollTimeMilliseconds = 
"adbc.statement.polltime_milliseconds";

Review Comment:
   While we have examples of both (e.g. "password" vs 
"adbc.connection.readonly") I think the vast majority look like the latter.



-- 
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]

Reply via email to