Jinfeng Liu

Results 5 comments of Jinfeng Liu

``` [2024-03-29T09:37:25Z DEBUG deltalake_aws] S3LogStoreFactory has been asked to create a LogStore without the dynamodb locking provider [2024-03-29T09:37:25Z DEBUG reqwest::connect] starting new connection: https://oss-cn-hangzhou.aliyuncs.com/ [2024-03-29T09:37:25Z DEBUG hyper::client::connect::dns] resolving host="oss-cn-hangzhou.aliyuncs.com" [2024-03-29T09:37:25Z...

I met the same issue. and a workaround is like ``` let df = tokio::task::spawn_blocking(|| { LazyFrame::scan_parquet("", args) .unwrap() .collect() .unwrap() }).await.unwrap(); ``` it would be better if polars can...

https://github.com/pola-rs/polars/issues/12041#issuecomment-2330399357

One more suggestion: Actually, we are able to return dynamic filter push down flag? ``` pub enum TableProviderFilterPushDown { /// The expression cannot be used by the provider. Unsupported, ///...