BryanCutler commented on pull request #12521: URL: https://github.com/apache/arrow/pull/12521#issuecomment-1058720173
@fabiencelier we have tended to have a some code duplication to reduce class bloat for vectors, so I would prefer not to add an abstract class for this. You could get the timezone from a vector with ``` String tz = ((ArrowType.Timestamp) vector.getField().getFieldType().getType()).getTimezone(); ``` which isn't pretty, so if you'd like to add a convenience method that does this in each of the timestamp with timezone vector classes, I think that would be ok. -- 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]
