iffyio opened a new pull request, #1741:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1741
Add support for scripting statements
```sql
CASE product_id
WHEN 1 THEN SELECT 1;
WHEN 2 THEN SELECT 2;
ELSE SELECT 3;
END CASE;
```
```sql
IF EXISTS(
berkaysynnada merged PR #14846:
URL: https://github.com/apache/datafusion/pull/14846
--
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...@
iffyio commented on code in PR #1732:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1732#discussion_r1967152710
##
src/ast/mod.rs:
##
@@ -8591,6 +8591,61 @@ pub enum CopyIntoSnowflakeKind {
Location,
}
+/// Index Field
+///
+/// This structure used here [`
wugeer closed issue #1644: fail to parse `grouping sets` in Hive Dialect
URL: https://github.com/apache/datafusion-sqlparser-rs/issues/1644
--
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 specifi
oznur-synnada commented on issue #14577:
URL: https://github.com/apache/datafusion/issues/14577#issuecomment-2677646308
Thank you - the invitation links are updated. We've encountered some issues
with Discord but the links should be working now
--
This is an automated message from the Apa
Arpit-Bandejiya commented on issue #14816:
URL: https://github.com/apache/datafusion/issues/14816#issuecomment-2677631277
Thanks for the response @alamb ! Couple of follow up questions:
>There is a PR we are currently working on related to metadata columns
(which could provide row ids
eliaperantoni commented on issue #14432:
URL: https://github.com/apache/datafusion/issues/14432#issuecomment-2677625958
Hey @Chen-Yuan-Lai, thank you so much for your contributions π That is
indeed an annoying issue. It seems like some of the error macros "flatten" the
inner error to a stri
iffyio commented on code in PR #1718:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1718#discussion_r1967140942
##
src/ast/mod.rs:
##
@@ -3058,6 +3058,33 @@ pub enum Statement {
begin: bool,
transaction: Option,
modifier: Option,
+
iffyio merged PR #1718:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1718
--
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
iffyio commented on PR #1736:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1736#issuecomment-2677624981
Adding an MSRV sounds good to me!
--
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
oznur-synnada opened a new pull request, #14846:
URL: https://github.com/apache/datafusion/pull/14846
## Which issue does this PR close?
- Closes #.
## Rationale for this change
## What changes are included in this PR?
## Are these changes t
eliaperantoni commented on issue #14430:
URL: https://github.com/apache/datafusion/issues/14430#issuecomment-2677611141
@onlyjackfrost yes that's perfect!
> I'm trying to add test case in the /sql/cases/diagnostic.rs file... will
raise PR later.
Sweet! Looking forward to it. Gr
eliaperantoni commented on code in PR #1738:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1738#discussion_r1967128017
##
src/ast/value.rs:
##
@@ -26,10 +26,25 @@ use bigdecimal::BigDecimal;
#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
-use c
oznur-synnada closed pull request #14845: Update gsoc_application_guidelines.md
URL: https://github.com/apache/datafusion/pull/14845
--
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
Lordworms commented on PR #14844:
URL: https://github.com/apache/datafusion/pull/14844#issuecomment-2677595271

--
This is an automated message from the Apache Git Service.
To respond to the messa
cetra3 commented on code in PR #14783:
URL: https://github.com/apache/datafusion/pull/14783#discussion_r196712
##
datafusion/sql/src/unparser/expr.rs:
##
@@ -1586,7 +1586,7 @@ impl Unparser<'_> {
not_impl_err!("Unsupported DataType: conversion:
{data_type:?
oznur-synnada opened a new pull request, #14845:
URL: https://github.com/apache/datafusion/pull/14845
Updated the expired Discord link with a valid one
## Which issue does this PR close?
## Rationale for this change
## What changes are included in this
Lordworms commented on PR #14844:
URL: https://github.com/apache/datafusion/pull/14844#issuecomment-2677559931
I haven't find a good place to add tests, but here is the results

--
This is an a
Lordworms opened a new pull request, #14844:
URL: https://github.com/apache/datafusion/pull/14844
## Which issue does this PR close?
- Closes #13286
## Rationale for this change
## What changes are included in this PR?
## Are these changes
kosiew commented on issue #1018:
URL:
https://github.com/apache/datafusion-python/issues/1018#issuecomment-2677496800
hi @cfis
> Not sure if this error is from Arrow or from the way DataFusion
It's from Datafusion
https://github.com/apache/datafusion/blob/c92982c393c69cbc4f5
rkrishn7 commented on code in PR #14843:
URL: https://github.com/apache/datafusion/pull/14843#discussion_r1967096334
##
Cargo.toml:
##
@@ -159,19 +159,20 @@ url = "2.5.4"
[profile.release]
codegen-units = 1
lto = true
+debug = false
Review Comment:
nit: I believe this is
kosiew commented on code in PR #14769:
URL: https://github.com/apache/datafusion/pull/14769#discussion_r1967089979
##
datafusion/core/src/dataframe/mod.rs:
##
@@ -1926,6 +1930,71 @@ impl DataFrame {
plan,
})
}
+
+/// Fill null values in specified c
kosiew commented on code in PR #14769:
URL: https://github.com/apache/datafusion/pull/14769#discussion_r1967089979
##
datafusion/core/src/dataframe/mod.rs:
##
@@ -1926,6 +1930,71 @@ impl DataFrame {
plan,
})
}
+
+/// Fill null values in specified c
cetra3 commented on code in PR #14783:
URL: https://github.com/apache/datafusion/pull/14783#discussion_r1967088349
##
datafusion/sql/src/unparser/expr.rs:
##
@@ -1624,9 +1624,7 @@ impl Unparser<'_> {
DataType::Union(_, _) => {
not_impl_err!("Unsuppo
rkrishn7 commented on PR #14843:
URL: https://github.com/apache/datafusion/pull/14843#issuecomment-2677527403
ππΎ
One consideration re: `panic=abort` is that it will cause the program to
crash upon some task panicking. Unclear on whether this is more/less desirable
than bubbling up t
phillipleblanc commented on code in PR #14783:
URL: https://github.com/apache/datafusion/pull/14783#discussion_r1967078010
##
datafusion/sql/src/unparser/expr.rs:
##
@@ -1624,9 +1624,7 @@ impl Unparser<'_> {
DataType::Union(_, _) => {
not_impl_err!(
phillipleblanc commented on PR #14783:
URL: https://github.com/apache/datafusion/pull/14783#issuecomment-2677510102
> Thank you @cetra3
>
> Ideally we would write a test for this., but since I couldn't find any
existing tests for data types, I don't think it is strictly necessary here
TheBuilderJR commented on issue #14757:
URL: https://github.com/apache/datafusion/issues/14757#issuecomment-2677466140
@alamb given that the arrow folks don't seem super motivated to fix this in
a timely manner, can we do a fix on the datafusion side? Maybe the fix is we
can try to do an ar
wiedld commented on PR #14637:
URL: https://github.com/apache/datafusion/pull/14637#issuecomment-2677406568
Thank you @berkaysynnada for the excellent feedback.
> First, instead of blocking the removal of CoalescePartitions, I believe
converting it to SortPreservingMerge is the correc
onlyjackfrost commented on issue #14430:
URL: https://github.com/apache/datafusion/issues/14430#issuecomment-2677326478
Hi @eliaperantoni, just updating my progress.
I've implemented the diagnostic like this.
@eliaperantoni thanks for implementing the `try_from_sqlparser_span` in the
niebayes commented on issue #14831:
URL: https://github.com/apache/datafusion/issues/14831#issuecomment-2677324032
Query federation is amazing. I will first look at the Substrait's
consumer-testing repo for DataFusion.
--
This is an automated message from the Apache Git Service.
To respo
github-actions[bot] commented on PR #13557:
URL: https://github.com/apache/datafusion/pull/13557#issuecomment-2677291102
Thank you for your contribution. Unfortunately, this pull request is stale
because it has been open 60 days with no activity. Please remove the stale
label or comment or
rkrishn7 commented on PR #14829:
URL: https://github.com/apache/datafusion/pull/14829#issuecomment-2677289153
Thanks @alamb @berkaysynnada!
Yeah, not too sure why it was there π€. For additional context, this also was
occurring for `UNION ALL`, when only one input in the union had an o
zzzdong commented on code in PR #1732:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1732#discussion_r1966963134
##
src/ast/mod.rs:
##
@@ -8591,6 +8591,61 @@ pub enum CopyIntoSnowflakeKind {
Location,
}
+/// Index Field
+///
+/// This structure used here [
jayzhan211 commented on code in PR #14841:
URL: https://github.com/apache/datafusion/pull/14841#discussion_r1966963244
##
datafusion/functions/src/unicode/strpos.rs:
##
@@ -83,6 +83,15 @@ impl ScalarUDFImpl for StrposFunc {
utf8_to_int_type(&arg_types[0], "strpos/instr/
jayzhan211 commented on PR #14824:
URL: https://github.com/apache/datafusion/pull/14824#issuecomment-2677255180
fix the extended test in main branch
--
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
jayzhan211 commented on code in PR #14737:
URL: https://github.com/apache/datafusion/pull/14737#discussion_r1966955590
##
datafusion/sqllogictest/test_files/array.slt:
##
@@ -2265,6 +2265,35 @@ select array_sort([]);
[]
+# test with null arguments
+# expected error:
+#
irenjj commented on PR #14677:
URL: https://github.com/apache/datafusion/pull/14677#issuecomment-2677245452
> Happy to see this happen.
>
> Maybe it's better to open a tracking issue to record next todos, such as
rich other physical operator's information to display. Then we can make
jayzhan211 commented on issue #14835:
URL: https://github.com/apache/datafusion/issues/14835#issuecomment-2677241293
> I think trying out @findepi 's Simple Functions #12635 would be an
excellent candidate for these functions. The ones that use make_scalar_function
are all fairly simple an
comphead commented on issue #13816:
URL: https://github.com/apache/datafusion/issues/13816#issuecomment-2677180516
I checked the biggest methods are std panic methods, removing unwind can
save even more
```
panic = "abort"
```
```
du -s -h target/release/datafusion-c
comphead commented on issue #13816:
URL: https://github.com/apache/datafusion/issues/13816#issuecomment-2677151841
so in the data above(ARM Macos) the biggest parts are
- code. compiled instructions 41MB
- consts (2-3MB)
@alamb WDYT should we dig deeper?
--
This is an autom
comphead commented on issue #13816:
URL: https://github.com/apache/datafusion/issues/13816#issuecomment-2677147665
Stripped binary by inner segments
```
size -m -l target/release/datafusion-cli
Segment __PAGEZERO: 4294967296 (zero fill) (vmaddr 0x0 fileoff 0)
Segment __TEXT:
comphead opened a new pull request, #14843:
URL: https://github.com/apache/datafusion/pull/14843
## Which issue does this PR close?
- Related to #13816.
## Rationale for this change
## What changes are included in this PR?
## Are these chang
comphead commented on issue #13816:
URL: https://github.com/apache/datafusion/issues/13816#issuecomment-2677140990
Tbh I dont have accurate answer for this, I found it when played with
different feature set on latest DF, but I remember some packages were moved out
of the core or similar.
comphead merged PR #14694:
URL: https://github.com/apache/datafusion/pull/14694
--
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...@dataf
berkaysynnada commented on issue #14514:
URL: https://github.com/apache/datafusion/issues/14514#issuecomment-2677135191
@PokIsemaine Awesome! I have not even noticed yet you open the sqlparser PR
π
I hope it won't take much time to release the new version.
--
This is an automated message
berkaysynnada commented on code in PR #14735:
URL: https://github.com/apache/datafusion/pull/14735#discussion_r1966895161
##
datafusion-examples/examples/expr_api.rs:
##
@@ -347,14 +350,112 @@ fn boundary_analysis_and_selectivity_demo() ->
Result<()> {
Ok(())
}
-fn make
berkaysynnada commented on code in PR #14207:
URL: https://github.com/apache/datafusion/pull/14207#discussion_r1966888998
##
datafusion/physical-optimizer/src/enforce_distribution.rs:
##
@@ -1021,21 +1043,25 @@ fn remove_dist_changing_operators(
fn replace_order_preserving_vari
berkaysynnada commented on code in PR #14523:
URL: https://github.com/apache/datafusion/pull/14523#discussion_r1966851842
##
datafusion/common/src/scalar/mod.rs:
##
@@ -1583,6 +1583,17 @@ impl ScalarValue {
}
}
+/// Returns negation for a boolean scalar value
codecov-commenter commented on PR #1440:
URL:
https://github.com/apache/datafusion-comet/pull/1440#issuecomment-2677064393
##
[Codecov](https://app.codecov.io/gh/apache/datafusion-comet/pull/1440?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_ca
iajoiner opened a new issue, #1740:
URL: https://github.com/apache/datafusion-sqlparser-rs/issues/1740
I really hope we can have a release soon so that
https://github.com/apache/datafusion-sqlparser-rs/pull/1730 can get in
--
This is an automated message from the Apache Git Service.
To re
berkaysynnada commented on PR #14813:
URL: https://github.com/apache/datafusion/pull/14813#issuecomment-2677017783
PTAL @ozankabak, @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 spe
riziles commented on issue #14842:
URL: https://github.com/apache/datafusion/issues/14842#issuecomment-2677027474
Nothing. It just silently crashes on the `register_table_provider` step.
Can't debug or anything. Never seen that in Python before.
--
This is an automated message from the Ap
ion-elgreco commented on issue #14842:
URL: https://github.com/apache/datafusion/issues/14842#issuecomment-2677014358
What error are you seeing?
--
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
riziles opened a new issue, #14842:
URL: https://github.com/apache/datafusion/issues/14842
### Describe the bug
After upgrading to deltalake (Python) 0.25.1, this basic example fails. Was
working fine before.
```python
from deltalake import DeltaTable, write_deltalake
imp
riziles commented on issue #14842:
URL: https://github.com/apache/datafusion/issues/14842#issuecomment-2677013787
cross posted here: https://github.com/delta-io/delta-rs/discussions/3221
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on t
andygrove opened a new pull request, #1440:
URL: https://github.com/apache/datafusion-comet/pull/1440
## Which issue does this PR close?
Part of https://github.com/apache/datafusion-comet/issues/1436
Builds on https://github.com/apache/datafusion-comet/pull/1439
#
andygrove commented on code in PR #14397:
URL: https://github.com/apache/datafusion/pull/14397#discussion_r1966806560
##
dev/changelog/45.0.0.md:
##
Review Comment:
The release process is documented at
https://github.com/apache/datafusion/blob/main/dev/release/README.md
rluvaton commented on code in PR #14841:
URL: https://github.com/apache/datafusion/pull/14841#discussion_r1966840711
##
datafusion/functions/src/unicode/strpos.rs:
##
@@ -83,6 +83,15 @@ impl ScalarUDFImpl for StrposFunc {
utf8_to_int_type(&arg_types[0], "strpos/instr/po
rluvaton opened a new pull request, #14841:
URL: https://github.com/apache/datafusion/pull/14841
## Which issue does this PR close?
N/A
## Rationale for this change
Currently because this function does not override `return_type_from_args`,
it will return that the return
berkaysynnada commented on code in PR #14813:
URL: https://github.com/apache/datafusion/pull/14813#discussion_r1966830680
##
datafusion/physical-plan/src/windows/mod.rs:
##
@@ -498,6 +697,15 @@ pub fn get_window_mode(
None
}
+fn all_possible_sort_options(expr: Arc) ->
V
berkaysynnada commented on code in PR #14813:
URL: https://github.com/apache/datafusion/pull/14813#discussion_r1966828820
##
datafusion/core/tests/physical_optimizer/enforce_sorting.rs:
##
@@ -2280,3 +2086,1265 @@ async fn
test_not_replaced_with_partial_sort_for_unbounded_input
berkaysynnada commented on code in PR #14813:
URL: https://github.com/apache/datafusion/pull/14813#discussion_r1966827630
##
datafusion/core/tests/physical_optimizer/enforce_sorting.rs:
##
@@ -2043,9 +1848,10 @@ async fn test_multiple_sort_window_exec() -> Result<()> {
le
zhuqi-lucas commented on code in PR #14823:
URL: https://github.com/apache/datafusion/pull/14823#discussion_r1966820859
##
datafusion/physical-plan/src/sorts/sort.rs:
##
@@ -414,6 +419,66 @@ impl ExternalSorter {
Ok(used)
}
+/// Reconstruct `self.in_mem_batch
AdamGS opened a new pull request, #14840:
URL: https://github.com/apache/datafusion/pull/14840
## Which issue does this PR close?
- Closes #14839.
## Rationale for this change
Minor DX improvement.
## What changes are included in this PR?
ozankabak commented on PR #14699:
URL: https://github.com/apache/datafusion/pull/14699#issuecomment-2676934776
Thanks for all the comments and questions. I've incorporated the naming
suggestion by @alamb (and updated many comments and variable names
accordingly). I also switched to `Generic
xudong963 commented on issue #14659:
URL: https://github.com/apache/datafusion/issues/14659#issuecomment-2676928561
Thanks, it works!
--
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
delamarch3 commented on issue #14817:
URL: https://github.com/apache/datafusion/issues/14817#issuecomment-2676930233
I took a look into this and opened an issue in arrow:
https://github.com/apache/arrow-rs/issues/7182
--
This is an automated message from the Apache Git Service.
To respond
alan910127 commented on code in PR #14737:
URL: https://github.com/apache/datafusion/pull/14737#discussion_r1966815085
##
datafusion/sqllogictest/test_files/array.slt:
##
@@ -2265,6 +2265,35 @@ select array_sort([]);
[]
+# test with null arguments
+# expected error:
+#
xudong963 closed issue #14659: Feature: support Timestamp with TZ for function
`to_unixtime`
URL: https://github.com/apache/datafusion/issues/14659
--
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
AdamGS commented on issue #1:
URL: https://github.com/apache/datafusion/issues/1#issuecomment-2676927900
Ok I got a first draft that just moves `FileStream` and `FileScanConfig` and
everything that comes with them. There are still some small issues to solve,
mostly around test funct
AdamGS opened a new pull request, #14838:
URL: https://github.com/apache/datafusion/pull/14838
## Which issue does this PR close?
This PR doesn't close any specific issue, its part of the ongoing #1.
## Rationale for this change
## What changes are inc
xudong963 commented on code in PR #14397:
URL: https://github.com/apache/datafusion/pull/14397#discussion_r1966807754
##
dev/changelog/45.0.0.md:
##
Review Comment:
Thank you andy!
--
This is an automated message from the Apache Git Service.
To respond to the message, p
konjac commented on PR #1015:
URL:
https://github.com/apache/datafusion-python/pull/1015#issuecomment-2676912860
> This looks good. It took me a while to parse through the logic of the
`get_batches`. I think it's worth adding some documentation within the file to
explain why we are doing t
andygrove commented on code in PR #14397:
URL: https://github.com/apache/datafusion/pull/14397#discussion_r1966806198
##
dev/changelog/45.0.0.md:
##
Review Comment:
The release process is documented at
https://github.com/apache/datafusion-comet/blob/main/dev/release/README
andygrove commented on code in PR #14397:
URL: https://github.com/apache/datafusion/pull/14397#discussion_r1966806198
##
dev/changelog/45.0.0.md:
##
Review Comment:
The release process is documented at
https://github.com/apache/datafusion-comet/blob/main/dev/release/README
xudong963 commented on code in PR #14397:
URL: https://github.com/apache/datafusion/pull/14397#discussion_r1966805448
##
dev/changelog/45.0.0.md:
##
Review Comment:
@alamb What tool do you use to generate the doc?
--
This is an automated message from the Apache Git Serv
xudong963 commented on issue #14123:
URL: https://github.com/apache/datafusion/issues/14123#issuecomment-2676905580
In `Bugs that would be good to fix`, four issues already have PRs, and one
does not. I'll focus on reviewing the four in the next two days and plan to
update version and chang
alamb commented on code in PR #14820:
URL: https://github.com/apache/datafusion/pull/14820#discussion_r1966797142
##
benchmarks/README.md:
##
@@ -243,28 +244,92 @@ The `dfbench` program contains subcommands to run the
various
benchmarks. When benchmarking, it should always be
alamb commented on issue #14768:
URL: https://github.com/apache/datafusion/issues/14768#issuecomment-2676887133
```sql
> create or replace table my_table as values ({'a': 'A1', 'myobjects':
[{'name': '1', 'value': 'V'}, {'name': '2', 'value': 'V2'}]});
0 row(s) fetched.
Elapsed 0.00
alamb commented on issue #14144:
URL: https://github.com/apache/datafusion/issues/14144#issuecomment-2676880600
> [@cj-zhukov](https://github.com/cj-zhukov)
[@alamb](https://github.com/alamb) hi, I've just hit this one. judging file
content by an extension doesn't feel fully right to me (as
xudong963 commented on PR #14699:
URL: https://github.com/apache/datafusion/pull/14699#issuecomment-2676878054
> Specifically, if we let `X_i` denote the value of `i`th row of column `X`,
the maximum value for the column would be `M = max(X_1, ..., X_N)` with `N`
being the number of rows. G
alamb commented on issue #13816:
URL: https://github.com/apache/datafusion/issues/13816#issuecomment-2676877830
> btw after changes in 45.0.0 the image size is 49M π
Nice! Do you know what changed?
Indeed I checked on my mac after doing `cargo build --release` and the size
is
alamb commented on issue #1:
URL: https://github.com/apache/datafusion/issues/1#issuecomment-2676876878
> I'll try and take a stab at it, [@alamb](https://github.com/alamb) do you
have a preference as to how many PRs I should break it into? There are no
logical changes but I expect
goldmedal commented on issue #6518:
URL: https://github.com/apache/datafusion/issues/6518#issuecomment-2676875774
I have created a draft PR for this issue.
- https://github.com/apache/datafusion/pull/14837
It still has some remaining work, but feel free to share your opinion.
--
goldmedal opened a new pull request, #14837:
URL: https://github.com/apache/datafusion/pull/14837
## Which issue does this PR close?
- Closes #6518.
## Rationale for this change
I have been working with @alamb to implement the functional for the async
UDF.
- http
xudong963 merged PR #14827:
URL: https://github.com/apache/datafusion/pull/14827
--
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...@data
AdamGS commented on issue #1:
URL: https://github.com/apache/datafusion/issues/1#issuecomment-2676870028
I'll try and take a stab at it, @alamb do you have a preference as to how
many PRs I should break it into? There are no logical changes but I expect a
very large numbers of small
alamb commented on PR #14547:
URL: https://github.com/apache/datafusion/pull/14547#issuecomment-2676860682
Hi @geoffreyclaude @NGA-TRAN -- I will plan to review this PR shortly. Sorry
for the delay.
--
This is an automated message from the Apache Git Service.
To respond to the message, p
alamb commented on PR #57:
URL: https://github.com/apache/datafusion-site/pull/57#issuecomment-2676866630
I'll wait for your comments before releasing
--
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
irenjj commented on PR #14677:
URL: https://github.com/apache/datafusion/pull/14677#issuecomment-2676863874
PTAL @alamb @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 specific c
alamb commented on issue #14831:
URL: https://github.com/apache/datafusion/issues/14831#issuecomment-2676863189
@niebayes said they may be interested in this:
- https://github.com/apache/datafusion/issues/14373#issuecomment-2667370515
--
This is an automated message from the Apache Git
alamb commented on PR #14207:
URL: https://github.com/apache/datafusion/pull/14207#issuecomment-2676862136
I plan to review this one carefully tomorrow
--
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 g
alamb commented on issue #14123:
URL: https://github.com/apache/datafusion/issues/14123#issuecomment-2676857655
@xudong963 are we still thinking of trying to get the release ready this
upcoming week?
I will try and focus my efforts starting tomorrow on ensuring the bugs
listed in "B
alamb commented on PR #14798:
URL: https://github.com/apache/datafusion/pull/14798#issuecomment-2676857121
Thanks again @AdamGS
--
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
timsaucer commented on PR #1024:
URL:
https://github.com/apache/datafusion-python/pull/1024#issuecomment-2676857092
Thank you! I can take care of the pypi upload today
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use t
alamb commented on PR #1024:
URL:
https://github.com/apache/datafusion-python/pull/1024#issuecomment-2676856559
Thanks @timsaucer ! I did the final upload / release here:
The release is available here:
https://dist.apache.org/repos/dist/release/datafusion/datafusion-python-45.2.
alamb commented on PR #14798:
URL: https://github.com/apache/datafusion/pull/14798#issuecomment-2676857066
π
--
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
alamb merged PR #14798:
URL: https://github.com/apache/datafusion/pull/14798
--
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
ozankabak commented on PR #57:
URL: https://github.com/apache/datafusion-site/pull/57#issuecomment-2676856751
We will take a look tomorrow and come up with suggestions if we can think of
anything
--
This is an automated message from the Apache Git Service.
To respond to the message, pleas
1 - 100 of 124 matches
Mail list logo