Samuel Colvin
Samuel Colvin
I guess "simple coroutine" really means "something awaitable", so in fact you could create a class with `async def __await__(self):` implemented and pass that, or have a class with a...
sorry, yes I meant `__call__`, the whole point is you wouldn't need any class detection. aiohttp would just call `await self.access_logger(request, response, time)`. > How often do you want to...
> We could deprecate `AbstractAccessLogger` completely and just tell people to always use `AbstractAsyncAccessLogger` then we don't have to do any tricky argument checking. This is the plan. > accept...
Oh nice, I had no idea.
Thanks @adriangb, now I can just make the feature request "support duckdb 'from first' syntax".
I have a branch that supports this, I'll create a PR when I have time. Some related link * [HN thread on similar issue](https://news.ycombinator.com/item?id=41339138) * PR adding this to DuckDB...
Thanks for reporting should fixed (or at least mitigated) by #70 which I know is urgent.
Yes that's correct.
I think that's a reasonable request.
This is fascinating, thank you so much. I'll look now soon. Perhaps we can just use `memchr` for arrow-rs. It's worth noting that wrt `LIKE` and `ILIKE` queries: 1. Most...