CurtHagenlocher commented on code in PR #1482:
URL: https://github.com/apache/arrow-adbc/pull/1482#discussion_r1467082884
##########
csharp/src/Drivers/BigQuery/BigQueryStatement.cs:
##########
@@ -87,16 +90,16 @@ private Field TranslateField(TableFieldSchema field)
return new Field(field.Name, TranslateType(field), field.Mode ==
"NULLABLE");
}
- public override object GetValue(IArrowArray arrowArray, Field field,
int index)
+ public override object GetValue(IArrowArray arrowArray, int index)
{
- switch(arrowArray)
+ switch (arrowArray)
{
case StructArray structArray:
- return SerializeToJson(structArray, index);
+ return SerializeToJson(structArray, index);
Review Comment:
nit: formatting glitch
--
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]