zhuqi-lucas opened a new pull request, #15145:
URL: https://github.com/apache/datafusion/pull/15145
## Which issue does this PR close?
fix extend sqllogical consistent with main test
## Rationale for this change
Similar to:
https://github.com/apache/datafusion/issu
2010YOUY01 commented on PR #15140:
URL: https://github.com/apache/datafusion/pull/15140#issuecomment-2712575632
Thank you for making this happen.
I have a suggestion: I think the only field needed inside `SPM` is the sort
keys, how about making it consistent with those in `SortExec`?
lovasoa commented on code in PR #1764:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1764#discussion_r1988500551
##
src/parser/mod.rs:
##
@@ -10202,19 +10209,25 @@ impl<'a> Parser<'a> {
}
}
+/// Parse a `WITH` clause, i.e. a `WITH` keyword foll
lovasoa commented on code in PR #1764:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1764#discussion_r1988500551
##
src/parser/mod.rs:
##
@@ -10202,19 +10209,25 @@ impl<'a> Parser<'a> {
}
}
+/// Parse a `WITH` clause, i.e. a `WITH` keyword foll
zhuqi-lucas commented on issue #15096:
URL: https://github.com/apache/datafusion/issues/15096#issuecomment-2712795395
Create the ticket for avro:
- [ ] Support Utf8View for avro
[#7262](https://github.com/apache/arrow-rs/issues/7262)
--
This is an automated message from the
logan-keede commented on PR #15144:
URL: https://github.com/apache/datafusion/pull/15144#issuecomment-2712783895
One problem that I sometimes encounter is that cargo decides to use
`arrow-arith v53.4.0` for particular releases which ends up giving compilation
error.
I’m not sure why this
Spaarsh commented on code in PR #1059:
URL:
https://github.com/apache/datafusion-python/pull/1059#discussion_r1988468214
##
src/expr.rs:
##
@@ -100,22 +100,37 @@ pub mod window;
use sort_expr::{to_sort_expressions, PySortExpr};
+// Define the new RawExpr struct and impleme
logan-keede opened a new pull request, #15144:
URL: https://github.com/apache/datafusion/pull/15144
## Which issue does this PR close?
- Part of #5504
## Rationale for this change
> Here is a suggestion on how to proceed with this project:
> 1. Create the converte
iffyio commented on code in PR #1764:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1764#discussion_r1988453837
##
src/parser/mod.rs:
##
@@ -10202,19 +10209,25 @@ impl<'a> Parser<'a> {
}
}
+/// Parse a `WITH` clause, i.e. a `WITH` keyword follo
trueleo closed issue #5706: `ScalarValue::to_array` panics when getting
statistics for List column
URL: https://github.com/apache/datafusion/issues/5706
--
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
iffyio commented on code in PR #1747:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1747#discussion_r1988442245
##
src/ast/dml.rs:
##
@@ -138,6 +143,30 @@ pub struct CreateTable {
pub engine: Option,
pub comment: Option,
pub auto_increment_offset: O
Friede80 opened a new issue, #15134:
URL: https://github.com/apache/datafusion/issues/15134
### Describe the bug
When a ViewTable is created, the plan is run through the `Analyzer` with the
`ExpandWildcardRule` and `TypeCoercion` rules. When this ViewTable is later
inlined, it is run
alan910127 commented on code in PR #15110:
URL: https://github.com/apache/datafusion/pull/15110#discussion_r1988197176
##
datafusion/optimizer/src/simplify_expressions/unwrap_cast.rs:
##
@@ -177,6 +192,45 @@ pub(super) fn
is_cast_expr_and_support_unwrap_cast_in_comparison_for_i
jayzhan211 merged PR #15131:
URL: https://github.com/apache/datafusion/pull/15131
--
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...@dat
Jiashu-Hu opened a new pull request, #15142:
URL: https://github.com/apache/datafusion/pull/15142
…revent this specific situation
## Which issue does this PR close?
- Closes #[15047](https://github.com/apache/datafusion/issues/15047).
## Rationale for this change
NevroHelios commented on issue #2027:
URL: https://github.com/apache/datafusion/issues/2027#issuecomment-2712675671
Since it is still open can I work on it and submit a pr?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and u
2010YOUY01 commented on issue #14535:
URL: https://github.com/apache/datafusion/issues/14535#issuecomment-2712646798
> Hello, I am interested in applying to work on this project for GSoC. After
reading through [#11030](https://github.com/apache/datafusion/issues/11030) ,
it looks like the t
2010YOUY01 commented on code in PR #15137:
URL: https://github.com/apache/datafusion/pull/15137#discussion_r1988371514
##
datafusion/sqllogictest/test_files/explain_tree.slt:
##
@@ -179,19 +185,31 @@ physical_plan
06)└─┬─┘
07)┌─┴
changsun20 opened a new pull request, #15143:
URL: https://github.com/apache/datafusion/pull/15143
## Which issue does this PR close?
- Closes #14438.
## Rationale for this change
This pull request enhances diagnostic information by attaching the
`Diagnos
CrystalZhou0529 commented on code in PR #1055:
URL:
https://github.com/apache/datafusion-python/pull/1055#discussion_r1988370240
##
python/datafusion/udf.py:
##
@@ -111,7 +111,27 @@ def __call__(self, *args: Expr) -> Expr:
args_raw = [arg.expr for arg in args]
Weijun-H commented on code in PR #15103:
URL: https://github.com/apache/datafusion/pull/15103#discussion_r1988354902
##
datafusion/physical-plan/src/aggregates/mod.rs:
##
@@ -809,8 +809,60 @@ impl DisplayAs for AggregateExec {
}
}
Displ
Spaarsh commented on code in PR #1059:
URL:
https://github.com/apache/datafusion-python/pull/1059#discussion_r1988360570
##
src/expr.rs:
##
@@ -100,22 +100,37 @@ pub mod window;
use sort_expr::{to_sort_expressions, PySortExpr};
+// Define the new RawExpr struct and impleme
matthewmturner commented on issue #14608:
URL: https://github.com/apache/datafusion/issues/14608#issuecomment-2712539973
@clflushopt this is _awesome_. Once you release I will likely add this to
[dft](https://github.com/datafusion-contrib/datafusion-dft).
--
This is an automated message
chenkovsky commented on issue #15118:
URL: https://github.com/apache/datafusion/issues/15118#issuecomment-2710431152
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
Standing-Man opened a new issue, #15141:
URL: https://github.com/apache/datafusion/issues/15141
### Is your feature request related to a problem or challenge?
Part of #14914
### Describe the solution you'd like
_No response_
### Describe alternatives you've conside
Standing-Man commented on issue #15141:
URL: https://github.com/apache/datafusion/issues/15141#issuecomment-2712465888
@irenjj
--
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 commen
clflushopt commented on issue #14608:
URL: https://github.com/apache/datafusion/issues/14608#issuecomment-2712464986
For anyone following this issue I have a full port here
https://github.com/clflushopt/tpchgen-rs and I am working on completing a first
release (I have issues to track that m
Standing-Man commented on issue #15141:
URL: https://github.com/apache/datafusion/issues/15141#issuecomment-2712465988
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.
Standing-Man opened a new pull request, #15140:
URL: https://github.com/apache/datafusion/pull/15140
## Which issue does this PR close?
- Closes #15139 and Part of #14914.
## Rationale for this change
## What changes are included in this PR?
Imp
Standing-Man commented on issue #15139:
URL: https://github.com/apache/datafusion/issues/15139#issuecomment-2712433934
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.
alamb opened a new pull request, #15133:
URL: https://github.com/apache/datafusion/pull/15133
## Which issue does this PR close?
- related to https://github.com/apache/arrow-rs/pull/6637
## Rationale for this change
I am using this PR to help verify that the chang
zhangx commented on PR #82:
URL: https://github.com/apache/datafusion-ray/pull/82#issuecomment-2712446883
> @zhangx thank you for submitting this!
>
> I submitted one at the same time with a similar fix, combined with a few
other small changes that came up during benchmarking.
Standing-Man opened a new pull request, #15137:
URL: https://github.com/apache/datafusion/pull/15137
## Which issue does this PR close?
- Closes #15097 and part of #14914.
## Rationale for this change
## What changes are included in this PR?
Standing-Man opened a new issue, #15139:
URL: https://github.com/apache/datafusion/issues/15139
### Is your feature request related to a problem or challenge?
Part of #14914
### Describe the solution you'd like
_No response_
### Describe alternatives you've conside
pranavJibhakate commented on issue #15138:
URL: https://github.com/apache/datafusion/issues/15138#issuecomment-2712342026
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
niebayes commented on PR #15119:
URL: https://github.com/apache/datafusion/pull/15119#issuecomment-2712347513
@alamb I wonder if we can remove the `register_expr_planners` and
`expr_planners` from the `FunctionRegistry` trait. I have checked the codebase
and they're only used by a test. And
jayzhan211 merged PR #15034:
URL: https://github.com/apache/datafusion/pull/15034
--
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...@dat
github-actions[bot] closed pull request #1636: preserve sql formatting through
a parse + display roundtrip (partial implementation)
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1636
--
This is an automated message from the Apache Git Service.
To respond to the message, please l
github-actions[bot] closed pull request #13933: Find a way to communicate the
ordering of a file back with the existi…
URL: https://github.com/apache/datafusion/pull/13933
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use t
jayzhan211 commented on code in PR #15022:
URL: https://github.com/apache/datafusion/pull/15022#discussion_r1988229738
##
datafusion/expr-common/src/groups_accumulator.rs:
##
@@ -251,3 +261,18 @@ pub trait GroupsAccumulator: Send {
/// compute, not `O(num_groups)`
fn s
tustvold commented on issue #13814:
URL: https://github.com/apache/datafusion/issues/13814#issuecomment-2711684269
IIRC that relates to type checking expressions, and therefore this would
suggest the compiler is spending a lot of time resolving generics. At least
historically non-boxed asyn
Standing-Man commented on issue #15138:
URL: https://github.com/apache/datafusion/issues/15138#issuecomment-2712286093
@irenjj
--
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 commen
jayzhan211 commented on code in PR #15022:
URL: https://github.com/apache/datafusion/pull/15022#discussion_r1988229738
##
datafusion/expr-common/src/groups_accumulator.rs:
##
@@ -251,3 +261,18 @@ pub trait GroupsAccumulator: Send {
/// compute, not `O(num_groups)`
fn s
alamb commented on code in PR #15090:
URL: https://github.com/apache/datafusion/pull/15090#discussion_r1987814170
##
datafusion/sqllogictest/test_files/order.slt:
##
@@ -985,13 +985,20 @@ drop table ambiguity_test;
statement ok
create table t(a0 int, a int, b int, c int) as va
jayzhan211 commented on code in PR #15022:
URL: https://github.com/apache/datafusion/pull/15022#discussion_r1988229738
##
datafusion/expr-common/src/groups_accumulator.rs:
##
@@ -251,3 +261,18 @@ pub trait GroupsAccumulator: Send {
/// compute, not `O(num_groups)`
fn s
goldmedal commented on code in PR #15068:
URL: https://github.com/apache/datafusion/pull/15068#discussion_r1987731975
##
datafusion/core/tests/sql/select.rs:
##
@@ -350,3 +351,48 @@ async fn test_version_function() {
assert_eq!(version.value(0), expected_version);
}
+
+#
comphead commented on issue #13814:
URL: https://github.com/apache/datafusion/issues/13814#issuecomment-2711668760
might be compiler related?
--
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
jayzhan211 commented on code in PR #10790:
URL: https://github.com/apache/datafusion/pull/10790#discussion_r1988207529
##
datafusion/functions-array/src/make_array.rs:
##
@@ -131,6 +131,11 @@ impl ScalarUDFImpl for MakeArray {
}
}
+// Empty array is a special case that i
alamb commented on code in PR #15068:
URL: https://github.com/apache/datafusion/pull/15068#discussion_r1987794389
##
datafusion/core/tests/sql/select.rs:
##
@@ -350,3 +351,48 @@ async fn test_version_function() {
assert_eq!(version.value(0), expected_version);
}
+
+#[tok
alan910127 commented on code in PR #15110:
URL: https://github.com/apache/datafusion/pull/15110#discussion_r1988192389
##
datafusion/optimizer/src/simplify_expressions/unwrap_cast.rs:
##
@@ -177,6 +192,45 @@ pub(super) fn
is_cast_expr_and_support_unwrap_cast_in_comparison_for_i
jayzhan211 commented on PR #15131:
URL: https://github.com/apache/datafusion/pull/15131#issuecomment-2712172487
Thanks @alamb
--
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
jayzhan211 commented on PR #15034:
URL: https://github.com/apache/datafusion/pull/15034#issuecomment-2712168720
Thanks @alamb
--
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
alan910127 commented on code in PR #15110:
URL: https://github.com/apache/datafusion/pull/15110#discussion_r1988192389
##
datafusion/optimizer/src/simplify_expressions/unwrap_cast.rs:
##
@@ -177,6 +192,45 @@ pub(super) fn
is_cast_expr_and_support_unwrap_cast_in_comparison_for_i
kylebarron commented on issue #853:
URL:
https://github.com/apache/datafusion-python/issues/853#issuecomment-2711787803
fwiw I always define my classes exported to Python with a Py prefix on the
rust side, and then rename the actual export from within the pyclass macro
--
This is an auto
delamarch3 commented on issue #13757:
URL: https://github.com/apache/datafusion/issues/13757#issuecomment-2711632124
Hi @logan-keede, is it ok if I pick this up?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
andygrove closed pull request #14392: feat: Add `datafusion-spark` crate
URL: https://github.com/apache/datafusion/pull/14392
--
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
vadimpiven commented on code in PR #15124:
URL: https://github.com/apache/datafusion/pull/15124#discussion_r1988170629
##
datafusion/core/Cargo.toml:
##
@@ -79,7 +79,7 @@ recursive_protection = [
"datafusion-physical-optimizer/recursive_protection",
"datafusion-sql/rec
vadimpiven commented on PR #15124:
URL: https://github.com/apache/datafusion/pull/15124#issuecomment-2712113391
@Weijun-H added test, please check that it is in the correct place. Also I
was not sure if I should make a separate pipeline invocation, please let me
know if I should
--
This
adriangb commented on code in PR #15057:
URL: https://github.com/apache/datafusion/pull/15057#discussion_r1988140038
##
datafusion/datasource-parquet/src/opener.rs:
##
@@ -111,18 +109,18 @@ impl FileOpener for ParquetOpener {
.schema_adapter_factory
.cr
Blizzara opened a new pull request, #15130:
URL: https://github.com/apache/datafusion/pull/15130
use `return_type_from_args` instead
## Which issue does this PR close?
- Closes #14729
## Rationale for this change
Implementing `return_type_from_exprs` is almost
andygrove commented on code in PR #1385:
URL: https://github.com/apache/datafusion-comet/pull/1385#discussion_r1987807688
##
spark/src/test/scala/org/apache/comet/CometCastSuite.scala:
##
@@ -1210,27 +1213,36 @@ class CometCastSuite extends CometTestBase with
AdaptiveSparkPlanH
adriangb commented on PR #15057:
URL: https://github.com/apache/datafusion/pull/15057#issuecomment-2712042344
The example is now working and even does stats pruning of shredded columns 🚀
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on
kevinjqliu commented on PR #1043:
URL:
https://github.com/apache/datafusion-python/pull/1043#issuecomment-2711411064
@timsaucer nope this LGTM. I double check the changes in
`examples/ffi-table-provider/Cargo.lock`
--
This is an automated message from the Apache Git Service.
To respond t
ozankabak commented on code in PR #58:
URL: https://github.com/apache/datafusion-site/pull/58#discussion_r1987861882
##
content/blog/2025-03-05-ordering-analysis.md:
##
@@ -0,0 +1,353 @@
+---
+layout: post
+title: Analysis of Ordering for Better Plans
+date: 2025-03-05
+author:
logan-keede commented on issue #13816:
URL: https://github.com/apache/datafusion/issues/13816#issuecomment-2711982900
> > > Hey [@logan-keede](https://github.com/logan-keede) I would think this
ticket is a good fit for GSoC
[#14510](https://github.com/apache/datafusion/issues/14510)
> >
viirya commented on code in PR #1485:
URL: https://github.com/apache/datafusion-comet/pull/1485#discussion_r1988101908
##
spark/src/main/java/org/apache/spark/shuffle/comet/CometShuffleMemoryAllocator.java:
##
@@ -48,30 +48,30 @@ public final class CometShuffleMemoryAllocator ex
alamb opened a new pull request, #15131:
URL: https://github.com/apache/datafusion/pull/15131
## Which issue does this PR close?
- Related to https://github.com/apache/datafusion/pull/15090
## Rationale for this change
In https://github.com/apache/datafusion/pull/15090 @j
andygrove commented on code in PR #1485:
URL: https://github.com/apache/datafusion-comet/pull/1485#discussion_r1988084656
##
spark/src/main/java/org/apache/spark/shuffle/comet/CometShuffleMemoryAllocator.java:
##
@@ -48,30 +48,30 @@ public final class CometShuffleMemoryAllocator
andygrove commented on issue #1492:
URL:
https://github.com/apache/datafusion-comet/issues/1492#issuecomment-2711940237
deleting the caches in GitHub actions resolved this
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and u
andygrove commented on code in PR #1485:
URL: https://github.com/apache/datafusion-comet/pull/1485#discussion_r1988082049
##
spark/src/main/java/org/apache/spark/shuffle/comet/CometShuffleMemoryAllocator.java:
##
@@ -48,30 +48,30 @@ public final class CometShuffleMemoryAllocator
lovasoa opened a new pull request, #1764:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1764
fixes https://github.com/apache/datafusion-sqlparser-rs/issues/1763
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub
niebayes commented on PR #14689:
URL: https://github.com/apache/datafusion/pull/14689#issuecomment-2710184716
Hi, does anyone observe performance regression of aggregation query after
this PR was merged? Not merely `count(*)` but almost all aggregation functions.
--
This is an automated m
andygrove commented on code in PR #1485:
URL: https://github.com/apache/datafusion-comet/pull/1485#discussion_r1987723154
##
spark/src/main/java/org/apache/spark/shuffle/comet/CometShuffleMemoryAllocator.java:
##
@@ -48,30 +48,30 @@ public final class CometShuffleMemoryAllocator
andygrove commented on code in PR #1485:
URL: https://github.com/apache/datafusion-comet/pull/1485#discussion_r1988060641
##
spark/src/main/java/org/apache/spark/shuffle/comet/CometShuffleMemoryAllocator.java:
##
@@ -48,30 +48,30 @@ public final class CometShuffleMemoryAllocator
alamb commented on issue #14914:
URL: https://github.com/apache/datafusion/issues/14914#issuecomment-2711612710
> > Can make `tree` a subcommand of `explain`, like `explain tree `.
>
> It looks like this is something that
[#15021](https://github.com/apache/datafusion/issues/15021) is
lovasoa opened a new issue, #1763:
URL: https://github.com/apache/datafusion-sqlparser-rs/issues/1763
SQLite, Postgres, and Mssql support WITH clauses attached to data-modifying
expressions.
```sql
with x(y) as (select 1) UPDATE demo SET Name = 'j';
```
```sql
with x(
timsaucer commented on issue #1042:
URL:
https://github.com/apache/datafusion-python/issues/1042#issuecomment-2711462228
Note: previous comment was just to test the github workflow
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to Git
alamb commented on code in PR #15131:
URL: https://github.com/apache/datafusion/pull/15131#discussion_r1987868432
##
datafusion/sqllogictest/test_files/order.slt:
##
@@ -986,17 +986,26 @@ statement ok
create table t(a0 int, a int, b int, c int) as values (1, 2, 3, 4), (5, 6, 7,
himadripal commented on code in PR #1385:
URL: https://github.com/apache/datafusion-comet/pull/1385#discussion_r1987983268
##
spark/src/test/scala/org/apache/comet/CometCastSuite.scala:
##
@@ -1210,27 +1213,36 @@ class CometCastSuite extends CometTestBase with
AdaptiveSparkPlan
timsaucer commented on code in PR #1059:
URL:
https://github.com/apache/datafusion-python/pull/1059#discussion_r1987943713
##
src/expr.rs:
##
@@ -100,22 +100,37 @@ pub mod window;
use sort_expr::{to_sort_expressions, PySortExpr};
+// Define the new RawExpr struct and imple
kevinjqliu commented on issue #899:
URL:
https://github.com/apache/datafusion-python/issues/899#issuecomment-2711464518
I also ran into this issue integrating `iceberg-python` with
`datafusion-python` using the FFI Table Provider. The integration goes from
`iceberg-python` -> `iceberg-rust
himadripal commented on code in PR #1385:
URL: https://github.com/apache/datafusion-comet/pull/1385#discussion_r1987886072
##
spark/src/test/scala/org/apache/comet/CometCastSuite.scala:
##
@@ -1210,27 +1213,36 @@ class CometCastSuite extends CometTestBase with
AdaptiveSparkPlan
kazuyukitanimura commented on code in PR #1385:
URL: https://github.com/apache/datafusion-comet/pull/1385#discussion_r1987953695
##
spark/src/test/scala/org/apache/comet/CometCastSuite.scala:
##
@@ -1210,27 +1213,36 @@ class CometCastSuite extends CometTestBase with
AdaptiveSpa
himadripal commented on code in PR #1385:
URL: https://github.com/apache/datafusion-comet/pull/1385#discussion_r1987983268
##
spark/src/test/scala/org/apache/comet/CometCastSuite.scala:
##
@@ -1210,27 +1213,36 @@ class CometCastSuite extends CometTestBase with
AdaptiveSparkPlan
alamb closed issue #15098: Improve Parsing for KV Format in `tree` explain.
URL: https://github.com/apache/datafusion/issues/15098
--
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
alamb commented on PR #15074:
URL: https://github.com/apache/datafusion/pull/15074#issuecomment-2710816307
I'll plan to merge this later today unless anyone else would like more time
to review
--
This is an automated message from the Apache Git Service.
To respond to the message, please l
timsaucer merged PR #1058:
URL: https://github.com/apache/datafusion-python/pull/1058
--
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...
Friede80 commented on PR #15135:
URL: https://github.com/apache/datafusion/pull/15135#issuecomment-271158
I'm not sure if there are still valid uses of `coerce_union_schema` given
only the set of logical plans, but if we can't change the api of a public
function, it would be easy enough
timsaucer closed issue #1042: Update python min version to 3.9
URL: https://github.com/apache/datafusion-python/issues/1042
--
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
alan910127 commented on code in PR #15110:
URL: https://github.com/apache/datafusion/pull/15110#discussion_r1987355491
##
datafusion/optimizer/src/simplify_expressions/unwrap_cast.rs:
##
@@ -177,6 +192,33 @@ pub(super) fn
is_cast_expr_and_support_unwrap_cast_in_comparison_for_i
alan910127 commented on code in PR #15110:
URL: https://github.com/apache/datafusion/pull/15110#discussion_r1987353874
##
datafusion/optimizer/src/simplify_expressions/unwrap_cast.rs:
##
@@ -177,6 +192,33 @@ pub(super) fn
is_cast_expr_and_support_unwrap_cast_in_comparison_for_i
codecov-commenter commented on PR #1491:
URL:
https://github.com/apache/datafusion-comet/pull/1491#issuecomment-2710718614
##
[Codecov](https://app.codecov.io/gh/apache/datafusion-comet/pull/1491?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_ca
alan910127 commented on code in PR #15110:
URL: https://github.com/apache/datafusion/pull/15110#discussion_r1987350998
##
datafusion/optimizer/src/simplify_expressions/unwrap_cast.rs:
##
@@ -177,6 +192,33 @@ pub(super) fn
is_cast_expr_and_support_unwrap_cast_in_comparison_for_i
vadimpiven closed issue #15122: Serde feature is broken
URL: https://github.com/apache/datafusion/issues/15122
--
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
vadimpiven commented on issue #15122:
URL: https://github.com/apache/datafusion/issues/15122#issuecomment-2710635830
Please reopen, closed by mistake by merging PR in fork.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and u
zhangx commented on issue #81:
URL: https://github.com/apache/datafusion-ray/issues/81#issuecomment-2710625487
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 u
Blizzara commented on code in PR #15123:
URL: https://github.com/apache/datafusion/pull/15123#discussion_r1987288818
##
datafusion/core/tests/physical_optimizer/projection_pushdown.rs:
##
@@ -89,6 +92,10 @@ impl ScalarUDFImpl for DummyUDF {
fn return_type(&self, _arg_types:
alamb commented on issue #13713:
URL: https://github.com/apache/datafusion/issues/13713#issuecomment-2710480146
I have incorporated @robtandy and @kevinjqliu 's comments. Here is the
current draft
```
## Description:
The mission of Apache DataFusion is the creation and maintenan
alamb commented on PR #58:
URL: https://github.com/apache/datafusion-site/pull/58#issuecomment-2710581497
Giving it another read now
--
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 c
Weijun-H commented on code in PR #15123:
URL: https://github.com/apache/datafusion/pull/15123#discussion_r1987269201
##
datafusion/core/tests/physical_optimizer/projection_pushdown.rs:
##
@@ -89,6 +92,10 @@ impl ScalarUDFImpl for DummyUDF {
fn return_type(&self, _arg_types:
1 - 100 of 133 matches
Mail list logo