adriangb commented on issue #14874:
URL: https://github.com/apache/datafusion/issues/14874#issuecomment-2729472951
I've thought about it a bit and I think the way to get variant support into
DataFusion is:
- Add general support for shredding via per-file filter rewrites and
projection ex
alamb opened a new issue, #15271:
URL: https://github.com/apache/datafusion/issues/15271
### Is your feature request related to a problem or challenge?
_No response_
### Describe the solution you'd like
_No response_
### Describe alternatives you've considered
alamb commented on PR #14547:
URL: https://github.com/apache/datafusion/pull/14547#issuecomment-2729588907
Thanks @geoffreyclaude -- I will try and look at this.
I think @goldmedal was also interested in this capability (using tracing
via the `otel` crate -- I will try and find time
alamb commented on issue #15005:
URL: https://github.com/apache/datafusion/issues/15005#issuecomment-2729594349
Next week: https://github.com/apache/datafusion/issues/15269
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and u
alamb closed issue #15005: March 4, 2025: This week(s) in DataFusion
URL: https://github.com/apache/datafusion/issues/15005
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To u
alamb commented on code in PR #1766:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1766#discussion_r1998847620
##
src/ast/mod.rs:
##
@@ -2256,6 +2256,57 @@ impl fmt::Display for ConditionalStatements {
}
}
+/// A `RAISE` statement.
+///
+/// Examples:
+///
goldmedal commented on PR #14547:
URL: https://github.com/apache/datafusion/pull/14547#issuecomment-2729811174
I'll take a look this PR in a few day.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go
jsai28 commented on code in PR #15262:
URL: https://github.com/apache/datafusion/pull/15262#discussion_r1998958709
##
datafusion/core/tests/dataframe/dataframe_functions.rs:
##
@@ -75,34 +75,28 @@ async fn create_test_table() -> Result {
}
/// Executes an expression on the t
alamb merged PR #15279:
URL: https://github.com/apache/datafusion/pull/15279
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...@datafusi
alamb commented on issue #15274:
URL: https://github.com/apache/datafusion/issues/15274#issuecomment-2730373688
REview queue:
- [ ] https://github.com/apache/datafusion/pull/15263
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to G
andygrove merged PR #1535:
URL: https://github.com/apache/datafusion-comet/pull/1535
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...@
andygrove closed issue #1533: GitHub discussions have been disabled
URL: https://github.com/apache/datafusion-comet/issues/1533
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
zhuqi-lucas opened a new pull request, #15275:
URL: https://github.com/apache/datafusion/pull/15275
## Which issue does this PR close?
- Closes sub_task of
[#15096](https://github.com/apache/datafusion/issues/15096)
## Rationale for this change
feat: Native support utf8v
alamb closed issue #15277: Implement tree explain for UnionExec
URL: https://github.com/apache/datafusion/issues/15277
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubs
alamb commented on code in PR #15211:
URL: https://github.com/apache/datafusion/pull/15211#discussion_r1999329931
##
datafusion/substrait/src/logical_plan/consumer.rs:
##
@@ -1074,6 +1074,9 @@ pub async fn from_project_rel(
// leaving only explicit expressions.
kazuyukitanimura commented on PR #1534:
URL:
https://github.com/apache/datafusion-comet/pull/1534#issuecomment-2730385010
cc @andygrove
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the speci
alamb commented on code in PR #15211:
URL: https://github.com/apache/datafusion/pull/15211#discussion_r1999332505
##
datafusion/substrait/src/logical_plan/consumer.rs:
##
@@ -1074,6 +1074,9 @@ pub async fn from_project_rel(
// leaving only explicit expressions.
comphead commented on PR #14975:
URL: https://github.com/apache/datafusion/pull/14975#issuecomment-2730388364
Sorry, it totally slipped my mind
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to th
rkrishn7 commented on PR #15242:
URL: https://github.com/apache/datafusion/pull/15242#issuecomment-2730402547
Thanks @Omega359!
@alamb Yes sorry for the delay, I can fix this up later today.
To expand on my comment
[here](https://github.com/apache/datafusion/pull/15242#issuecom
alamb merged PR #15270:
URL: https://github.com/apache/datafusion/pull/15270
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...@datafusi
alamb closed issue #15138: Implement tree explain for `PlaceholderRowExec`
URL: https://github.com/apache/datafusion/issues/15138
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
qazxcdswe123 opened a new pull request, #15279:
URL: https://github.com/apache/datafusion/pull/15279
I think this is what the "passed to the" part is missing but I might be
wrong.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitH
alamb commented on code in PR #15268:
URL: https://github.com/apache/datafusion/pull/15268#discussion_r1999148261
##
datafusion/datasource-parquet/src/file_format.rs:
##
@@ -465,45 +465,103 @@ impl FileFormat for ParquetFormat {
}
}
-/// Coerces the file schema if the ta
timsaucer commented on issue #1065:
URL:
https://github.com/apache/datafusion-python/issues/1065#issuecomment-2730138953
Is this necessary? Now that we have the global context for reading files to
create dataframes, this is potentially creating conflict of floating around two
different def
codecov-commenter commented on PR #15256:
URL: https://github.com/apache/datafusion/pull/15256#issuecomment-2730139264
##
[Codecov](https://app.codecov.io/gh/apache/datafusion/pull/15256?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+
m09526 commented on code in PR #15268:
URL: https://github.com/apache/datafusion/pull/15268#discussion_r1998724986
##
datafusion/datasource-parquet/src/file_format.rs:
##
@@ -465,45 +465,103 @@ impl FileFormat for ParquetFormat {
}
}
-/// Coerces the file schema if the t
goldmedal commented on code in PR #15212:
URL: https://github.com/apache/datafusion/pull/15212#discussion_r1998987034
##
.github/workflows/rust.yml:
##
@@ -246,6 +246,7 @@ jobs:
mc cp -r /source/* localminio/data"
- name: Run tests (excluding doctests)
alan910127 commented on code in PR #15110:
URL: https://github.com/apache/datafusion/pull/15110#discussion_r1997943659
##
datafusion/optimizer/src/analyzer/type_coercion.rs:
##
@@ -290,19 +290,72 @@ impl<'a> TypeCoercionRewriter<'a> {
right: Expr,
right_schema:
alamb merged PR #15251:
URL: https://github.com/apache/datafusion/pull/15251
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...@datafusi
andygrove opened a new pull request, #1540:
URL: https://github.com/apache/datafusion-comet/pull/1540
## Which issue does this PR close?
Closes #.
## Rationale for this change
## What changes are included in this PR?
## How are these changes
alamb commented on PR #15203:
URL: https://github.com/apache/datafusion/pull/15203#issuecomment-2729763285
Thank you for the review @xudong963 -- much apprecaited
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
UR
jonahgao commented on code in PR #15183:
URL: https://github.com/apache/datafusion/pull/15183#discussion_r1998943593
##
datafusion/sql/src/expr/function.rs:
##
@@ -217,13 +217,13 @@ impl SqlToRel<'_, S> {
// it shouldn't have ordering requirement as function argument
alamb commented on PR #15039:
URL: https://github.com/apache/datafusion/pull/15039#issuecomment-2730069735
This PR appears to have some build / CI failures that are preventing it from
merging so marking it as drat
@LuQQiu can you please resolve the issues so it can be merged?
--
Th
alamb commented on PR #15242:
URL: https://github.com/apache/datafusion/pull/15242#issuecomment-2730093478
@rkrishn7 will you have time to apply @Omega359 's suggestion?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use
timsaucer merged PR #1062:
URL: https://github.com/apache/datafusion-python/pull/1062
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...
goldmedal closed pull request #15272: [TEST] enable recursive_protection to fix
CI stack overflow
URL: https://github.com/apache/datafusion/pull/15272
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to
alamb commented on code in PR #15239:
URL: https://github.com/apache/datafusion/pull/15239#discussion_r1999161222
##
datafusion/common/src/dfschema.rs:
##
@@ -563,29 +563,6 @@ impl DFSchema {
.all(|(dffield, arrowfield)| dffield.name() == arrowfield.name())
}
blaginin commented on PR #15255:
URL: https://github.com/apache/datafusion/pull/15255#issuecomment-2729413005
> I tried allow_duplicates!(), but it gets a bit tricky with async functions
Can you please explain more on this? I tried modifying _async_
`run_and_compare_query` and this wo
alamb commented on PR #15123:
URL: https://github.com/apache/datafusion/pull/15123#issuecomment-2729560442
🔨 let's go
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
T
andygrove merged PR #1534:
URL: https://github.com/apache/datafusion-comet/pull/1534
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...@
andygrove commented on issue #1510:
URL:
https://github.com/apache/datafusion-comet/issues/1510#issuecomment-2730485723
We can run `docker scout` locally.
```
docker scout cves apache/datafusion-comet:0.5.0-spark3.4.3-scala2.12-java11
```
There are some CVEs in dependenci
andygrove commented on code in PR #1483:
URL: https://github.com/apache/datafusion-comet/pull/1483#discussion_r1999378679
##
spark/src/main/scala/org/apache/comet/CometSparkSessionExtensions.scala:
##
@@ -188,69 +185,62 @@ class CometSparkSessionExtensions
scanE
andygrove commented on PR #1483:
URL:
https://github.com/apache/datafusion-comet/pull/1483#issuecomment-2729501003
@mbutrovich @parthchandra This is now ready for review
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and us
alamb commented on issue #15028:
URL: https://github.com/apache/datafusion/issues/15028#issuecomment-2729506412
I started organizing tickets related to sorting larger than available RAM
datasets here:
- https://github.com/apache/datafusion/issues/15271
--
This is an automated message f
zebsme commented on issue #15277:
URL: https://github.com/apache/datafusion/issues/15277#issuecomment-2730027331
take
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To uns
zebsme opened a new issue, #15277:
URL: https://github.com/apache/datafusion/issues/15277
### Is your feature request related to a problem or challenge?
- Part of #14914
### Describe the solution you'd like
Add tree format to the ExecutionPlan specified in the subject of
alamb commented on issue #15271:
URL: https://github.com/apache/datafusion/issues/15271#issuecomment-2729488222
I also think that by collecting the related items we may be able to find
some more review capacity (as I think this is an important capability for Spark
/ Comet. FYI @comphead /
alamb commented on issue #15269:
URL: https://github.com/apache/datafusion/issues/15269#issuecomment-2729759078
Also, huge thanks to @xudong963 for running the release process
- https://github.com/apache/datafusion/issues/14123
- https://github.com/apache/datafusion/issues/15151
alamb commented on code in PR #59:
URL: https://github.com/apache/datafusion-site/pull/59#discussion_r1998872033
##
content/blog/2025-03-11-ordering-analysis.md:
##
@@ -291,6 +291,31 @@ Following third and fourth constraints for the simplified
table, the succinct va
`[time_bin
alamb commented on issue #15151:
URL: https://github.com/apache/datafusion/issues/15151#issuecomment-2729754194
Thanks again @xudong963 !
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the speci
timsaucer closed issue #1056: Apply additional ruff suggestions
URL: https://github.com/apache/datafusion-python/issues/1056
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To
timsaucer commented on PR #1062:
URL:
https://github.com/apache/datafusion-python/pull/1062#issuecomment-2729760767
Thank you for all the work on this!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to
alamb commented on issue #15096:
URL: https://github.com/apache/datafusion/issues/15096#issuecomment-2729731675
> erformance improvement: Binary operators native support for Utf8View
Yes, 100%
--
This is an automated message from the Apache Git Service.
To respond to the message, pl
zhuqi-lucas commented on issue #15096:
URL: https://github.com/apache/datafusion/issues/15096#issuecomment-2729876918
> > erformance improvement: Binary operators native support for Utf8View
>
> Yes, 100%
Submitted the PR for review:
https://github.com/apache/datafusion/pull/
eliaperantoni commented on issue #15276:
URL: https://github.com/apache/datafusion/issues/15276#issuecomment-2729888439
What do you think @alamb? I could take on this and make a PR if you approve
the solution :)
--
This is an automated message from the Apache Git Service.
To respond to th
Spaarsh opened a new pull request, #1072:
URL: https://github.com/apache/datafusion-python/pull/1072
# Which issue does this PR close?
Closes #1065
# Rationale for this change
To improve ergonomics of the API by providing a pre-initialized
`SessionContext` inst
timsaucer opened a new pull request, #15280:
URL: https://github.com/apache/datafusion/pull/15280
## Which issue does this PR close?
None.
## Rationale for this change
This PR expands the interfaces available via FFI to include Catalogs and
Schemas (catalog schema, not a
suibianwanwank opened a new pull request, #15281:
URL: https://github.com/apache/datafusion/pull/15281
## Which issue does this PR close?
- Closes #15032.
## Rationale for this change
## What changes are included in this PR?
## Are these cha
suibianwanwank commented on code in PR #15281:
URL: https://github.com/apache/datafusion/pull/15281#discussion_r1999272559
##
datafusion/optimizer/src/scalar_subquery_to_join.rs:
##
@@ -476,19 +485,19 @@ mod tests {
.build()?;
let expected = "Projection:
alamb opened a new issue, #15274:
URL: https://github.com/apache/datafusion/issues/15274
This is an attempt to organize myself and make what I plan to work on more
visible
## Weekly High Level Goals
- [ ] Make arrow release: https://github.com/apache/arrow-rs/issues/7107
- [ ] C
goldmedal opened a new pull request, #15272:
URL: https://github.com/apache/datafusion/pull/15272
## Which issue does this PR close?
- A test for #15212
## Rationale for this change
## What changes are included in this PR?
## Are these chang
alan910127 commented on PR #15110:
URL: https://github.com/apache/datafusion/pull/15110#issuecomment-2727773494
> Does this make sense @alan910127 ?
So we'll keep both the coercion and cast unwrapping optimizations in this
PR, is that correct? I'm unsure about "support other types," d
alamb commented on issue #15283:
URL: https://github.com/apache/datafusion/issues/15283#issuecomment-2730526009
FYI @timsaucer in case you have other items you want to add here
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub
alamb commented on PR #15280:
URL: https://github.com/apache/datafusion/pull/15280#issuecomment-2730531904
Thank you @timsaucer
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comme
alamb commented on code in PR #15253:
URL: https://github.com/apache/datafusion/pull/15253#discussion_r1999392980
##
datafusion/expr/src/expr.rs:
##
@@ -2607,11 +2793,23 @@ pub(crate) fn
schema_name_from_exprs_comma_separated_without_space(
schema_name_from_exprs_inner(exp
andygrove commented on code in PR #1483:
URL: https://github.com/apache/datafusion-comet/pull/1483#discussion_r1999438466
##
spark/src/main/scala/org/apache/comet/CometSparkSessionExtensions.scala:
##
@@ -188,69 +185,62 @@ class CometSparkSessionExtensions
scanE
alamb commented on PR #15234:
URL: https://github.com/apache/datafusion/pull/15234#issuecomment-2730540542
> I only had time to take a quick glance - but could this functionality be
added to datafusion so it could be used by other apps that have CLIs built on
datafusion?
Seems like a
duongcongtoai commented on issue #14554:
URL: https://github.com/apache/datafusion/issues/14554#issuecomment-2730673982
From this [PR](https://github.com/apache/datafusion/pull/6457), there are
several types of query mentioned that need support
1. In Subquery contains limit/order by
``
andygrove opened a new pull request, #1543:
URL: https://github.com/apache/datafusion-comet/pull/1543
## Which issue does this PR close?
Closes #.
## Rationale for this change
## What changes are included in this PR?
## How are these changes
alamb merged PR #15278:
URL: https://github.com/apache/datafusion/pull/15278
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...@datafusi
timsaucer commented on PR #15280:
URL: https://github.com/apache/datafusion/pull/15280#issuecomment-2730732221
Oh, good point. Added in latest push.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go t
kylebarron commented on issue #899:
URL:
https://github.com/apache/datafusion-python/issues/899#issuecomment-2730730310
I published `pyo3-object_store` 0.1, which works with pyo3 0.23, and
`pyo3-object_store` 0.2, which works with pyo3 0.24. But both of these require
`object_store` 0.12, s
andygrove opened a new pull request, #1544:
URL: https://github.com/apache/datafusion-comet/pull/1544
## Which issue does this PR close?
N/A
## Rationale for this change
I have recently seen some build failures due to:
```
Error: Failed to Create
suremarc commented on issue #15191:
URL: https://github.com/apache/datafusion/issues/15191#issuecomment-2730732469
> I think it uses
[FileGroupPartitioner](https://docs.rs/datafusion/latest/datafusion/datasource/physical_plan/struct.FileGroupPartitioner.html)
that maintains the same orderin
alamb opened a new issue, #15283:
URL: https://github.com/apache/datafusion/issues/15283
### Is your feature request related to a problem or challenge?
We are adding FFI bindings to Datafusion (see
https://crates.io/crates/datafusion-ffi) mostly for API stability (e.g. so
python wrap
kazuyukitanimura commented on PR #1534:
URL:
https://github.com/apache/datafusion-comet/pull/1534#issuecomment-2730537142
Thanks @andygrove
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the s
alamb closed issue #15245: Migrate dataframe tests to `insta`
URL: https://github.com/apache/datafusion/issues/15245
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscr
alamb commented on issue #15269:
URL: https://github.com/apache/datafusion/issues/15269#issuecomment-2730516080
Oh, and of course @timsaucer is cranking out FFI bindings like
- https://github.com/apache/datafusion/pull/15280
--
This is an automated message from the Apache Git Service.
alamb merged PR #15262:
URL: https://github.com/apache/datafusion/pull/15262
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...@datafusi
andygrove merged PR #1527:
URL: https://github.com/apache/datafusion-comet/pull/1527
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...@
adriangb commented on issue #3463:
URL: https://github.com/apache/datafusion/issues/3463#issuecomment-2730550280
I don't think this needs to block but I'll point out that I have a PR up for
a bug from the interaction between `SchemaAdapter` and parquet filter pushdown:
https://github.com/ap
blaginin commented on issue #15282:
URL: https://github.com/apache/datafusion/issues/15282#issuecomment-2730556871
Thanks, added to the list 🌻
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the
codecov-commenter commented on PR #1541:
URL:
https://github.com/apache/datafusion-comet/pull/1541#issuecomment-2730586578
##
[Codecov](https://app.codecov.io/gh/apache/datafusion-comet/pull/1541?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_ca
andygrove opened a new issue, #1542:
URL: https://github.com/apache/datafusion-comet/issues/1542
### Describe the bug
This issue is to track Spark SQL test failures in native_iceberg_compat mode.
- Comet tries to read JSON files with Parquet reader
### Steps to reprod
mbutrovich commented on code in PR #1443:
URL: https://github.com/apache/datafusion-comet/pull/1443#discussion_r1999472634
##
native/core/src/parquet/mod.rs:
##
@@ -46,23 +47,22 @@ use self::util::jni::TypePromotionInfo;
use crate::execution::operators::ExecutionError;
use cra
andygrove commented on issue #1542:
URL:
https://github.com/apache/datafusion-comet/issues/1542#issuecomment-2730625465
@parthchandra @mbutrovich fyi
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go
alamb commented on code in PR #15263:
URL: https://github.com/apache/datafusion/pull/15263#discussion_r1999523980
##
datafusion/core/src/datasource/physical_plan/parquet.rs:
##
@@ -224,6 +224,64 @@ mod tests {
)
}
+#[tokio::test]
+async fn test_pushdown_w
andygrove closed issue #1536: `native_datafusion` scan is only enabled when
`spark.comet.exec.enabled` is set
URL: https://github.com/apache/datafusion-comet/issues/1536
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
alamb opened a new pull request, #15284:
URL: https://github.com/apache/datafusion/pull/15284
## Which issue does this PR close?
## Rationale for this change
- Found while reviewing https://github.com/apache/datafusion/pull/15263 from
@adriangb
Some of the newer Dat
shruti2522 commented on PR #15255:
URL: https://github.com/apache/datafusion/pull/15255#issuecomment-2730590045
> > I tried allow_duplicates!(), but it gets a bit tricky with async
functions
>
> Can you please explain more on this? I tried modifying _async_
`run_and_compare_query` an
alamb commented on issue #15178:
URL: https://github.com/apache/datafusion/issues/15178#issuecomment-2730830528
> [@alamb](https://github.com/alamb) can I ask you to put "good first issue"
on tickets in the list if you're happy with them? I don't think I have
permission to do that
Do
alamb commented on issue #14874:
URL: https://github.com/apache/datafusion/issues/14874#issuecomment-2730836455
> Add specialized support in arrow-rs for variant binary types (specifically
for the metadata columns)
I think this will be a fun project for the right type of person. I
alamb commented on issue #13399:
URL: https://github.com/apache/datafusion/issues/13399#issuecomment-2730849740
> [@sageraven1](https://github.com/sageraven1) , Are you still working on
this? I see that PR was marked as stale and got closed. If you aren't working
on this, I would like to pi
alamb commented on code in PR #15284:
URL: https://github.com/apache/datafusion/pull/15284#discussion_r1999606913
##
datafusion/catalog/src/session.rs:
##
@@ -145,7 +145,7 @@ impl From<&dyn Session> for TaskContext {
state.scalar_functions().clone(),
st
alamb merged PR #15123:
URL: https://github.com/apache/datafusion/pull/15123
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...@datafusi
alamb closed issue #14652: Deprecate and eventually remove
`ScalarUDF::invoke_batch`
URL: https://github.com/apache/datafusion/issues/14652
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specif
alamb commented on PR #15123:
URL: https://github.com/apache/datafusion/pull/15123#issuecomment-2729560622
Thanks again
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To
Spaarsh commented on PR #1062:
URL:
https://github.com/apache/datafusion-python/pull/1062#issuecomment-2729797059
@timsaucer there are still several rules to be enabled. But those require
significant changes. Take a look at the rule `PLR0913`:
```
docs/source/conf.py:76:5: PLR0913 Too
chenkovsky commented on code in PR #15212:
URL: https://github.com/apache/datafusion/pull/15212#discussion_r1999031362
##
datafusion/sql/src/unparser/expr.rs:
##
@@ -94,6 +94,7 @@ impl Unparser<'_> {
Ok(root_expr)
}
+#[cfg_attr(feature = "recursive_protection
alamb merged PR #15203:
URL: https://github.com/apache/datafusion/pull/15203
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: github-unsubscr...@datafusi
1 - 100 of 215 matches
Mail list logo