Phillip Cloud
Phillip Cloud
Reading through some of the review here, I would really love for y'all to chime in more proactively on the Ibis issue tracker. I understand that contributing to Ibis isn't...
One difficulty here is that this check enforces version constraints, which I think might make adding the build time dependency check a non-starter without some `substituteInPlace` calls in the right...
Another issue is that this flag results in a failure for packages that are missing build time dependencies that are circular. In some cases we have to remove those build...
I do think there's value in checking for **missing** build-time dependencies but I'm not sure how to surface only those and ignore the errors coming from constraint violations.
Happy to accept the changes other than the build hook modification, merge those shortly!
Passing locally on: - x86_64-darwin - aarch64-darwin - x86_64-linux
For an arbitrary query, computing the number of rows isn't cheap. For some data sources, like text files, computing the number of rows can be extremely expensive. Polars can only...
Why wouldn't performance be relevant in interactive mode?
Perhaps it wasn't clear from what I said before, but computing `count(*)` of `query` and compute `select * from query limit 11` in the worst case will require computing `query`...
Counting the duration of the query would almost certainly require spinning up a thread to compute the duration of the count query, which also adds more complexity. Perhaps the question...