ci: Remove duckdb nightly from cov#3015
Conversation
|
Not really sure what to do about this new failure FAILED tests/expr_and_series/reduction_test.py::test_empty_scalar_reduction_with_columns[sqlframe] -
NotImplementedError: This engine does not support schema inference likely since it does not have an active connection.I've chased down (e6b21ca) already, but this is all stems from a @MarcoGorelli do we still need to run |
we don't need it anymore 👍 |
Ahhh, in that case should we just take the simpler route and edit the workflows instead? 😂 EditAnd raise an issue in |
|
seems fine to merge, we'll need this fix in place eventually anyway, no? |
We might need it, but I'm not 100% sure Unless @t.overload
def toArrow(self) -> ArrowTable: ...
@t.overload
def toArrow(self, batch_size: int) -> RecordBatchReader: ...
def toArrow(self, batch_size: t.Optional[int] = None) -> t.Union[ArrowTable, RecordBatchReader]:
self._collect(skip_rows=True)
if not batch_size:
return self.session._last_result.arrow()
return self.session._last_result.fetch_record_batch(batch_size)They still have the option mentioned in the
I feel like there's a reasonable chance that |
|
sure, could be let's just remove the nightly install from this job then? |
Sounds good, also pinging @eakmanrq! EditFollowing this |
pa.RecordBatchReader in SparkLikeLazyFrame.collectduckdb nightly from cov


What type of PR is this? (check all applicable)
Related issues
Checklist
If you have comments or can explain your changes, please do so below
Important
Originally named fix: Handle
pa.RecordBatchReaderinSparkLikeLazyFrame.collect