datafusion-java icon indicating copy to clipboard operation
datafusion-java copied to clipboard

Java binding to Apache Arrow DataFusion

Results 23 datafusion-java issues
Sort by recently updated
recently updated
newest added

This PR includes a few tidy ups and fixes to examples in the README: * Update versions of Arrow and DataFusion referenced in the README * Update the version of...

Bumps org.apache.arrow:arrow-compression from 14.0.2 to 16.0.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.arrow:arrow-compression&package-manager=gradle&previous-version=14.0.2&new-version=16.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Bumps [org.apache.arrow:arrow-format](https://github.com/apache/arrow) from 14.0.1 to 16.0.0. Commits 6a28035 MINOR: [Release] Update versions for 16.0.0 4cd1b34 MINOR: [Release] Update .deb/.rpm changelogs for 16.0.0 2847737 MINOR: [Release] Update CHANGELOG.md for 16.0.0 eb5f162...

dependencies

Hi, are there plans for adding support for macOS / AArch64 (i.e. M1 Macs) to this library? I am getting this error below which I suppose is the case as...

Bumps org.slf4j:slf4j-api from 2.0.9 to 2.0.13. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.slf4j:slf4j-api&package-manager=gradle&previous-version=2.0.9&new-version=2.0.13)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Bumps [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) from 5.10.0 to 5.10.2. Release notes Sourced from org.junit.jupiter:junit-jupiter's releases. JUnit 5.10.2 = Platform 1.10.2 + Jupiter 5.10.2 + Vintage 5.10.2 See Release Notes. Full Changelog: https://github.com/junit-team/junit5/compare/r5.10.1...r5.10.2 JUnit...

dependencies

Bumps [org.apache.arrow:arrow-vector](https://github.com/apache/arrow) from 13.0.0 to 14.0.0. Commits 2dcee3f MINOR: [Release] Update versions for 14.0.0 297428c MINOR: [Release] Update .deb/.rpm changelogs for 14.0.0 3e9734f MINOR: [Release] Update CHANGELOG.md for 14.0.0 9f90995...

dependencies

**Maven Pom.xml** ```xml io.github.datafusion-contrib datafusion-java 0.15.0 ``` **Code:** ```Java SessionContext context = SessionContexts.create(); System.out.println(context.sql("select 1.5 + sqrt(2.0)").get()); ``` **Exception:** ```txt Exception in thread "main" java.lang.UnsatisfiedLinkError: /private/var/folders/jg/1m0ncz_12ls78p9f8lq094880000gn/T/datafusion_jni6452691470670684444.dylib: dlopen(/private/var/folders/jg/1m0ncz_12ls78p9f8lq094880000gn/T/datafusion_jni6452691470670684444.dylib, 0x0001): tried: '/private/var/folders/jg/1m0ncz_12ls78p9f8lq094880000gn/T/datafusion_jni6452691470670684444.dylib'...

How to create dataframe from an in-memory data collection,such as List or Map?