zanmato1984 commented on code in PR #46566:
URL: https://github.com/apache/arrow/pull/46566#discussion_r2115262361
##
python/pyarrow/tests/test_acero.py:
##
@@ -300,6 +300,86 @@ def test_order_by():
_ = OrderByNodeOptions([("b", "ascending")], null_placement="start")
AlenkaF commented on code in PR #46591:
URL: https://github.com/apache/arrow/pull/46591#discussion_r2115254860
##
docs/source/python/install.rst:
##
@@ -98,6 +98,21 @@ a custom path to the database from Python:
>>> import pyarrow as pa
>>> pa.set_timezone_db_path("custom
AlenkaF commented on code in PR #46591:
URL: https://github.com/apache/arrow/pull/46591#discussion_r2115254037
##
docs/source/python/install.rst:
##
@@ -98,6 +98,21 @@ a custom path to the database from Python:
>>> import pyarrow as pa
>>> pa.set_timezone_db_path("custom
xingyu-long commented on PR #46566:
URL: https://github.com/apache/arrow/pull/46566#issuecomment-2921391424
> If you want to write a similar test case, let's just workaround the
constraint and use unique column names.
Thanks for confirming it! The tests I added for test `always true`
mkarbo commented on code in PR #7535:
URL: https://github.com/apache/arrow-rs/pull/7535#discussion_r2115246754
##
parquet-variant/src/variant.rs:
##
@@ -0,0 +1,714 @@
+use crate::decoder::{
+self, get_basic_type, get_primitive_type, VariantBasicType,
VariantPrimitiveType,
+
zanmato1984 commented on PR #46566:
URL: https://github.com/apache/arrow/pull/46566#issuecomment-2921384026
> I see, so if I understand this correctly, ideally, we probably should
assign distinct key for both columns before using filter expression since
output_suffix_for_left would only wor
lidavidm commented on code in PR #45859:
URL: https://github.com/apache/arrow/pull/45859#discussion_r2115239145
##
cpp/src/arrow/util/tracing_internal.cc:
##
@@ -97,6 +97,10 @@ class OtlpOStreamExporter final : public
sdktrace::SpanExporter {
std::chrono::m
zanmato1984 commented on code in PR #46509:
URL: https://github.com/apache/arrow/pull/46509#discussion_r2115238105
##
cpp/cmake_modules/ThirdpartyToolchain.cmake:
##
@@ -4845,6 +4845,14 @@ macro(build_opentelemetry)
version)
set(OPENTELEMETRY_BUILD_BYPRODUCTS)
set(O
zanmato1984 commented on code in PR #45859:
URL: https://github.com/apache/arrow/pull/45859#discussion_r2115236457
##
cpp/src/arrow/util/tracing_internal.cc:
##
@@ -97,6 +97,10 @@ class OtlpOStreamExporter final : public
sdktrace::SpanExporter {
std::chrono
lidavidm commented on code in PR #46509:
URL: https://github.com/apache/arrow/pull/46509#discussion_r2115229961
##
cpp/cmake_modules/ThirdpartyToolchain.cmake:
##
@@ -4845,6 +4845,14 @@ macro(build_opentelemetry)
version)
set(OPENTELEMETRY_BUILD_BYPRODUCTS)
set(OPEN
lidavidm commented on code in PR #2825:
URL: https://github.com/apache/arrow-adbc/pull/2825#discussion_r2115226610
##
go/adbc/driver/internal/driverbase/connection.go:
##
@@ -183,28 +188,34 @@ func (base *ConnectionImplBase) GetInfo(ctx
context.Context, infoCodes []adbc.In
github-actions[bot] commented on PR #46638:
URL: https://github.com/apache/arrow/pull/46638#issuecomment-2921347261
Revision: 2189cd0868d98f89fb4933bd26e6ee1d149b0c2f
Submitted crossbow builds: [ursacomputing/crossbow @
actions-a59b384503](https://github.com/ursacomputing/crossbow/bra
xingyu-long commented on PR #46566:
URL: https://github.com/apache/arrow/pull/46566#issuecomment-2921331804
> This is an independent problem. Because join is concatenating columns from
both sides, so it is possible that the result table contains columns with the
same name. If so, you won't
AlenkaF commented on PR #46638:
URL: https://github.com/apache/arrow/pull/46638#issuecomment-2921343549
@github-actions crossbow submit preview-docs
--
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
lidavidm commented on PR #2858:
URL: https://github.com/apache/arrow-adbc/pull/2858#issuecomment-2921343385
Oh wait - is the `dll.a` sufficient? (That's being installed.) Does the
`.def` file need to be installed?
--
This is an automated message from the Apache Git Service.
To respond to
lidavidm commented on PR #2858:
URL: https://github.com/apache/arrow-adbc/pull/2858#issuecomment-2921341518
Also I see `gendef` being invoked, but it's not installed by CMake - that
probably also needs to be tweaked
--
This is an automated message from the Apache Git Service.
To respond t
raulcd commented on code in PR #46261:
URL: https://github.com/apache/arrow/pull/46261#discussion_r2115208708
##
c_glib/arrow-glib/compute.cpp:
##
@@ -37,6 +37,9 @@
#include
#include
+// Initialize the compute library and register compute kernels.
+auto compute_init_status
github-actions[bot] commented on PR #46591:
URL: https://github.com/apache/arrow/pull/46591#issuecomment-2921327651
Revision: 4ac6fc38b63c395fc468ee6ddf81239f4084ab08
Submitted crossbow builds: [ursacomputing/crossbow @
actions-07de9c2772](https://github.com/ursacomputing/crossbow/bra
AlenkaF commented on PR #46591:
URL: https://github.com/apache/arrow/pull/46591#issuecomment-2921324450
@github-actions crossbow submit preview-docs
--
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
xingyu-long commented on code in PR #46566:
URL: https://github.com/apache/arrow/pull/46566#discussion_r2115200396
##
python/pyarrow/tests/test_acero.py:
##
@@ -300,6 +300,37 @@ def test_order_by():
_ = OrderByNodeOptions([("b", "ascending")], null_placement="start")
xingyu-long commented on code in PR #46566:
URL: https://github.com/apache/arrow/pull/46566#discussion_r211516
##
python/pyarrow/_acero.pyx:
##
@@ -273,14 +273,15 @@ cdef class _HashJoinNodeOptions(ExecNodeOptions):
def _set_options(
self, join_type, left_key
xingyu-long commented on code in PR #46566:
URL: https://github.com/apache/arrow/pull/46566#discussion_r2115199593
##
python/pyarrow/acero.py:
##
@@ -114,6 +114,8 @@ def _perform_join(join_type, left_operand, left_keys,
in the join result.
output_type: Table or InM
lidavidm commented on PR #2858:
URL: https://github.com/apache/arrow-adbc/pull/2858#issuecomment-2921296093
It looks like tests might not fully build:
```
C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe:
validation/Debug/libadbc_valida
birschick-bq commented on code in PR #2825:
URL: https://github.com/apache/arrow-adbc/pull/2825#discussion_r2115146439
##
go/adbc/utils/utils.go:
##
@@ -73,3 +81,50 @@ func removeFieldMetadata(field *arrow.Field) arrow.Field {
Metadata: arrow.Metadata{},
zanmato1984 commented on code in PR #46566:
URL: https://github.com/apache/arrow/pull/46566#discussion_r2115110646
##
python/pyarrow/_acero.pyx:
##
@@ -273,14 +273,15 @@ cdef class _HashJoinNodeOptions(ExecNodeOptions):
def _set_options(
self, join_type, left_key
zanmato1984 commented on code in PR #46566:
URL: https://github.com/apache/arrow/pull/46566#discussion_r2115109420
##
python/pyarrow/acero.py:
##
@@ -114,6 +114,8 @@ def _perform_join(join_type, left_operand, left_keys,
in the join result.
output_type: Table or InM
thisisnic commented on issue #46632:
URL: https://github.com/apache/arrow/issues/46632#issuecomment-2921184363
> I might just cherry-pick that change into a minor PR on main
@amoeba - sounds perfect and much simpler than messing around with the
docgen script; thanks!
--
This is an
github-actions[bot] commented on PR #46643:
URL: https://github.com/apache/arrow/pull/46643#issuecomment-2921163177
Revision: ed91acebc7e30a3c69116ef3638b1f56fd6ecc93
Submitted crossbow builds: [ursacomputing/crossbow @
actions-39b42b1501](https://github.com/ursacomputing/crossbow/bra
kou commented on PR #46643:
URL: https://github.com/apache/arrow/pull/46643#issuecomment-2921160903
@github-actions crossbow submit preview-docs
--
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
amoeba commented on PR #46643:
URL: https://github.com/apache/arrow/pull/46643#issuecomment-2921108377
For reviewers: I tried to keep it short though I think there are other ways
we might address this such as changing the bullet to something like "Generally
O(1) (constant-time) random acces
amoeba opened a new pull request, #46643:
URL: https://github.com/apache/arrow/pull/46643
### Rationale for this change
Resolves https://github.com/apache/arrow/issues/46642.
### What changes are included in this PR?
- Updated columnar format doc
### Are these chan
kou commented on PR #46595:
URL: https://github.com/apache/arrow/pull/46595#issuecomment-2921087484
OK. I've opened #46641 for it.
I'll merge this if nobody objects it. Because we can remove Archery based
lint from our lint CI job by merging this. It will solve
https://github.com/apa
kou commented on PR #46594:
URL: https://github.com/apache/arrow/pull/46594#issuecomment-2921075354
+1
--
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-mai
kou commented on issue #46593:
URL: https://github.com/apache/arrow/issues/46593#issuecomment-2921076253
Issue resolved by pull request 46594
https://github.com/apache/arrow/pull/46594
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on
kou commented on issue #46499:
URL: https://github.com/apache/arrow/issues/46499#issuecomment-2921077865
Issue resolved by pull request 46501
https://github.com/apache/arrow/pull/46501
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on
kou merged PR #46501:
URL: https://github.com/apache/arrow/pull/46501
--
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...@arrow.apache.or
kou commented on PR #46501:
URL: https://github.com/apache/arrow/pull/46501#issuecomment-2921077340
No objection. I'll merge 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 go to the specific com
kou merged PR #46594:
URL: https://github.com/apache/arrow/pull/46594
--
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...@arrow.apache.or
rtadepalli commented on issue #79:
URL: https://github.com/apache/arrow-java/issues/79#issuecomment-2921051019
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 unsub
rtadepalli commented on code in PR #777:
URL: https://github.com/apache/arrow-java/pull/777#discussion_r2115033521
##
vector/src/main/java/org/apache/arrow/vector/BaseValueVector.java:
##
@@ -248,4 +252,114 @@ public void copyFrom(int fromIndex, int thisIndex,
ValueVector from)
github-actions[bot] commented on PR #777:
URL: https://github.com/apache/arrow-java/pull/777#issuecomment-2921054081
Thank you for opening a pull request!
Please label the PR with one or more of:
- bug-fix
- chore
- dependencies
- documentation
- enhancement
rtadepalli opened a new pull request, #777:
URL: https://github.com/apache/arrow-java/pull/777
## What's Changed
Move `splitAndTransferValidityBuffer` up to `BaseValueVector`.
This PR is not touching the implementation of this function in
`StructVector` -- that is not being derived
kou commented on issue #46576:
URL: https://github.com/apache/arrow/issues/46576#issuecomment-2920996193
Issue resolved by pull request 46622
https://github.com/apache/arrow/pull/46622
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on
lidavidm commented on code in PR #2825:
URL: https://github.com/apache/arrow-adbc/pull/2825#discussion_r2114999729
##
go/adbc/utils/utils.go:
##
@@ -73,3 +81,50 @@ func removeFieldMetadata(field *arrow.Field) arrow.Field {
Metadata: arrow.Metadata{},
}
}
lidavidm commented on code in PR #2825:
URL: https://github.com/apache/arrow-adbc/pull/2825#discussion_r2115001195
##
go/adbc/utils/utils.go:
##
@@ -73,3 +81,50 @@ func removeFieldMetadata(field *arrow.Field) arrow.Field {
Metadata: arrow.Metadata{},
}
}
amoeba commented on issue #46324:
URL: https://github.com/apache/arrow/issues/46324#issuecomment-2920996722
Post-release tasks were done as part of
https://github.com/apache/arrow/issues/46453.
--
This is an automated message from the Apache Git Service.
To respond to the message, please
kou merged PR #46622:
URL: https://github.com/apache/arrow/pull/46622
--
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...@arrow.apache.or
amoeba commented on issue #46632:
URL: https://github.com/apache/arrow/issues/46632#issuecomment-2920992331
I am just getting around to post-release stuff and was going to look at
this. On the maint branch, I fixed this by just manually documenting it, see
https://github.com/apache/arrow/co
github-actions[bot] commented on PR #46126:
URL: https://github.com/apache/arrow/pull/46126#issuecomment-2920984163
:warning: GitHub issue #45723 **has been automatically assigned in GitHub**
to PR creator.
--
This is an automated message from the Apache Git Service.
To respond to the mes
conbench-apache-arrow[bot] commented on PR #46639:
URL: https://github.com/apache/arrow/pull/46639#issuecomment-2920968215
After merging your PR, Conbench analyzed the 3 benchmarking runs that have
been run so far on merge-commit 1d43680f56857b99805a2745a8bae40a48cf3f3d.
There were no
kou commented on issue #45723:
URL: https://github.com/apache/arrow/issues/45723#issuecomment-2920976412
https://github.com/apache/arrow/pull/46126 ?
Could you follow auto-generated comment
https://github.com/apache/arrow/pull/46126#issuecomment-275164 to fix PR
style?
--
This is
arogozhnikov commented on issue #386:
URL:
https://github.com/apache/arrow-rs-object-store/issues/386#issuecomment-2920969577
> š¤ so maybe cranking up the timeout is an adequate workaround for most users
may I give a counter-example? I'm currently exploring different options for
auto
xingyu-long commented on PR #46566:
URL: https://github.com/apache/arrow/pull/46566#issuecomment-2920972318
> * inner join will kee
Thanks @zanmato1984 for your explanation, it makes sense. probably I should
mention more details in function docstring for this usage then. at same time,
amoeba opened a new pull request, #46640:
URL: https://github.com/apache/arrow/pull/46640
### Rationale for this change
On the current docs, the title of the package doesn't show up. It would be
good if it did. I tried various sanctioned things but none worked. I am
chalking it up as
amoeba commented on PR #46640:
URL: https://github.com/apache/arrow/pull/46640#issuecomment-2920964401
With this change, when I rebuild the site with `pkgdown::build_home_index();
pkgdown::init_site()`, I see,

--
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
jasonlin45 closed pull request #2895: Jason/databricks metadata
URL: https://github.com/apache/arrow-adbc/pull/2895
--
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 unsubscri
birschick-bq commented on code in PR #2825:
URL: https://github.com/apache/arrow-adbc/pull/2825#discussion_r2114943387
##
go/adbc/utils/utils.go:
##
@@ -73,3 +81,50 @@ func removeFieldMetadata(field *arrow.Field) arrow.Field {
Metadata: arrow.Metadata{},
birschick-bq commented on code in PR #2825:
URL: https://github.com/apache/arrow-adbc/pull/2825#discussion_r2114943874
##
go/adbc/utils/utils.go:
##
@@ -73,3 +81,50 @@ func removeFieldMetadata(field *arrow.Field) arrow.Field {
Metadata: arrow.Metadata{},
birschick-bq commented on code in PR #2825:
URL: https://github.com/apache/arrow-adbc/pull/2825#discussion_r2114942734
##
go/adbc/utils/utils.go:
##
@@ -73,3 +81,50 @@ func removeFieldMetadata(field *arrow.Field) arrow.Field {
Metadata: arrow.Metadata{},
Odin-BN commented on issue #734:
URL: https://github.com/apache/arrow-java/issues/734#issuecomment-2920853773
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 unsubs
Odin-BN commented on issue #734:
URL: https://github.com/apache/arrow-java/issues/734#issuecomment-2920854377
@lidavidm thank you!
--
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 com
alinaliBQ commented on PR #46622:
URL: https://github.com/apache/arrow/pull/46622#issuecomment-2920834273
@kou Thanks, I have added the change in `resolve_option_dependencies` to
disable ODBC build on non-windows platforms. I believe the workflows currently
do not build the Flight SQL ODBC
lidavidm commented on issue #734:
URL: https://github.com/apache/arrow-java/issues/734#issuecomment-2920826092
@Odin-BN you can comment 'take' and a bot will assign it to you
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and
github-actions[bot] commented on PR #46509:
URL: https://github.com/apache/arrow/pull/46509#issuecomment-2920706266
Revision: aea53b008de9812eb75d76fca207e6de8f865be8
Submitted crossbow builds: [ursacomputing/crossbow @
actions-0c4049b1ff](https://github.com/ursacomputing/crossbow/bra
zanmato1984 commented on PR #46509:
URL: https://github.com/apache/arrow/pull/46509#issuecomment-2920703003
@github-actions crossbow submit test-ubuntu-24.04-cpp-thread-sanitizer
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub
paleolimbot commented on issue #7240:
URL: https://github.com/apache/arrow-rs/issues/7240#issuecomment-2920701998
Yes, apologies for being slow here (just a few things on the go!). Also
happy to review if anybody beats me to it!
--
This is an automated message from the Apache Git Service.
zanmato1984 commented on PR #46566:
URL: https://github.com/apache/arrow/pull/46566#issuecomment-2920698129
If my above comment addresses your concern, I'll in turn review the code.
Thank you @xingyu-long .
--
This is an automated message from the Apache Git Service.
To respond to the mes
birschick-bq closed pull request #2559: feat(csharp/src/Apache.Arrow.Adbc): add
OpenTelemetry compatible tracing support
URL: https://github.com/apache/arrow-adbc/pull/2559
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use
zanmato1984 commented on PR #46566:
URL: https://github.com/apache/arrow/pull/46566#issuecomment-2920686680
Thank you @xingyu-long for contributing this!
I'd first address your concern of:
> it seems we didn't return empty, instead, we return the `right outer`? it
seems the join ty
amoeba merged PR #46639:
URL: https://github.com/apache/arrow/pull/46639
--
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...@arrow.apache
eric-wang-1990 opened a new pull request, #2894:
URL: https://github.com/apache/arrow-adbc/pull/2894
## PR Description
### Description
This PR fixes an issue with foreign key handling in the `GetColumnsExtended`
method by refactoring the cross-reference lookup process. It extracts
kumarlokesh commented on issue #7302:
URL: https://github.com/apache/arrow-rs/issues/7302#issuecomment-2920541775
@alamb made an attempt to address this requirement here:
https://github.com/apache/arrow-rs/pull/7566. Please have a look.
--
This is an automated message from the Apache Git
amoeba commented on issue #46324:
URL: https://github.com/apache/arrow/issues/46324#issuecomment-2920540474
News backport PR is https://github.com/apache/arrow/pull/46639.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and us
amoeba opened a new pull request, #46639:
URL: https://github.com/apache/arrow/pull/46639
### Rationale for this change
I edited NEWS.md for the 20.0.0.X release and we need to backport those
changes.
### What changes are included in this PR?
I cherry-picked:
- 73
codecov-commenter commented on PR #556:
URL: https://github.com/apache/arrow-julia/pull/556#issuecomment-2920537595
##
[Codecov](https://app.codecov.io/gh/apache/arrow-julia/pull/556?dropdown=coverage&src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comm
nalimilan opened a new pull request, #556:
URL: https://github.com/apache/arrow-julia/pull/556
Invalid indices were used with `OffsetArray`s as 1-based indexing was
assumed. Fix this, and always wrap them in a `ToArrow` objet so that they are
consistently turned into 1-based arrays.
etseidl commented on issue #7567:
URL: https://github.com/apache/arrow-rs/issues/7567#issuecomment-2920523371
I would love to get the total order PR
(https://github.com/apache/parquet-format/pull/221) merged into the format
before the next major release, but that may be wishful thinking.
alamb commented on code in PR #7558:
URL: https://github.com/apache/arrow-rs/pull/7558#discussion_r2114706862
##
parquet/src/file/properties.rs:
##
@@ -614,6 +622,84 @@ impl WriterPropertiesBuilder {
self
}
+/// Sets the max length of min/max value fields whe
alamb commented on code in PR #7558:
URL: https://github.com/apache/arrow-rs/pull/7558#discussion_r2114705752
##
parquet/src/file/properties.rs:
##
@@ -614,6 +622,84 @@ impl WriterPropertiesBuilder {
self
}
+/// Sets the max length of min/max value fields whe
alamb commented on issue #7240:
URL: https://github.com/apache/arrow-rs/issues/7240#issuecomment-2920508617
Among other things, we will also need to update the parquet-format
definitions:
- https://github.com/apache/arrow-rs/issues/7567
--
This is an automated message from the Apache G
alamb opened a new issue, #7567:
URL: https://github.com/apache/arrow-rs/issues/7567
**Is your feature request related to a problem or challenge? Please describe
what you are trying to do.**
The parquet format has been updates to include types such as Variant and
Geometry
The parq
alamb closed issue #7500: `arrow-55.1.0` breaks `filter_record_batch`
URL: https://github.com/apache/arrow-rs/issues/7500
--
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
alamb commented on issue #7533:
URL: https://github.com/apache/arrow-rs/issues/7533#issuecomment-2920488417
Closed in https://github.com/apache/arrow-rs/pull/7534
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL
alamb commented on issue #7500:
URL: https://github.com/apache/arrow-rs/issues/7500#issuecomment-2920491178
I think this was fixed in this PR:
- https://github.com/apache/arrow-rs/pull/7539 from @thorfour
--
This is an automated message from the Apache Git Service.
To respond to th
alamb closed issue #7533: Panic in `pretty_format` function when displaying
DurationSecondsArray with `i64::MIN` / `i64::MAX`
URL: https://github.com/apache/arrow-rs/issues/7533
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and
alamb commented on issue #7562:
URL: https://github.com/apache/arrow-rs/issues/7562#issuecomment-2920486438
Sounds like a good thing to try 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 go to t
kumarlokesh opened a new pull request, #7566:
URL: https://github.com/apache/arrow-rs/pull/7566
# Which issue does this PR close?
Closes #7302.
# Rationale for this change
# What changes are included in this PR?
1. Added native `UnionEncoder`
Odin-BN commented on issue #734:
URL: https://github.com/apache/arrow-java/issues/734#issuecomment-2920464638
Hi @hnwyllmm ! Iād like to work on this issue. Could you please assign it to
me?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log
zeroshade commented on issue #392:
URL: https://github.com/apache/arrow-go/issues/392#issuecomment-2920332652
Thanks! I'll take a look!
--
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
kangakum36 commented on PR #46638:
URL: https://github.com/apache/arrow/pull/46638#issuecomment-2920299858
@github-actions crossbow submit preview-docs
--
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
github-actions[bot] commented on PR #46638:
URL: https://github.com/apache/arrow/pull/46638#issuecomment-2920301106
```
Only contributors can submit requests to this bot. Please ask someone from
the community for help with getting the first commit in.
The Archery job run can be found a
github-actions[bot] commented on PR #46638:
URL: https://github.com/apache/arrow/pull/46638#issuecomment-2920292972
:warning: GitHub issue #46633 **has been automatically assigned in GitHub**
to PR creator.
--
This is an automated message from the Apache Git Service.
To respond to the mes
kangakum36 opened a new pull request, #46638:
URL: https://github.com/apache/arrow/pull/46638
### Rationale for this change
The documentation for
[pyarrow.Table.combine_chunks](https://arrow.apache.org/docs/python/generated/pyarrow.Table.html#pyarrow.Table.combine_chunks)
and
[Table
conbench-apache-arrow[bot] commented on PR #46619:
URL: https://github.com/apache/arrow/pull/46619#issuecomment-2920252549
After merging your PR, Conbench analyzed the 4 benchmarking runs that have
been run so far on merge-commit bd2c0703b86a294d9c874f97e40c9294b0bc1b57.
There were no
przste-go commented on issue #392:
URL: https://github.com/apache/arrow-go/issues/392#issuecomment-2920220994
Hey @zeroshade I've uploaded masked file here
https://github.com/przste-go/broken-parquet. I verified that it can be read
fine using 18.2.0 and fails on 18.3.0
--
This is an aut
geonove commented on issue #45723:
URL: https://github.com/apache/arrow/issues/45723#issuecomment-2920192509
@cramosme I see, we came to a the same implementation š
You should link this issue in the PR, might have better chances to get it
reviewed :)
--
This is an automated message fr
davidhewitt commented on PR #7468:
URL: https://github.com/apache/arrow-rs/pull/7468#issuecomment-2920155207
This is not forgotten, just been spinning other plates. Hoping to dive deep
into this early next week.
--
This is an automated message from the Apache Git Service.
To respond to th
alamb commented on issue #386:
URL:
https://github.com/apache/arrow-rs-object-store/issues/386#issuecomment-2920166729
š¤ so maybe cranking up the timeout is an adequate workaround for most users
--
This is an automated message from the Apache Git Service.
To respond to the message, pleas
davidhewitt commented on issue #7185:
URL: https://github.com/apache/arrow-rs/issues/7185#issuecomment-2920151078
I was wondering, does this same problem also apply to dictionaries? From
what I can tell from a quick look inside `write_array_data`, buffers are
truncated to any sliced portion
1 - 100 of 199 matches
Mail list logo