Nick Hughes
Nick Hughes
Hi Redshift team, I'd like to second this request - it would be very useful to be able fetch query results in PyArrow format (Table, or a stream of Record...
> In the case of FlightRPC, users can get intro trouble when they fork after instantiating a FlightClient... Does the same logic hold for a `FlightServer` instance too? Seems like...
Thanks @amoeba. I do have a use case for which a similar check in FlightServer would be useful. I have a FlightServer that serves batches of features to the client...
That all makes sense - thanks for clarifying @amoeba. I can't think of an obvious parallel on the server side but if the check is relatively lightweight then it seems...
Sounds good 👍
Thanks @paperclipstudio. I believe mypy is actually correct here. The expression: ``` super(Level1_1, self).method() ``` will call `method` in `Level1_2` - hence the revealed type of `str`. Whereas the expression:...
Hi @ebram96 - I think mypy is correct in this case. Your `MyMixin` class is a regular class and not a Protocol class (as it does not explicitly inherit from...