Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ protected void canDeriveSourceInternal() {
* both doc values and stored field
*/
@Override
protected DerivedFieldGenerator derivedFieldGenerator() {
public DerivedFieldGenerator derivedFieldGenerator() {
return new DerivedFieldGenerator(
mappedFieldType,
new SortedNumericDocValuesFetcher(mappedFieldType, simpleName()),
Expand Down
2 changes: 1 addition & 1 deletion modules/parquet-data-format/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ dependencies {
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.18.2'

// FlatBuffers dependency required by Arrow
implementation 'com.google.flatbuffers:flatbuffers-java:2.0.0'
implementation "com.google.flatbuffers:flatbuffers-java:${versions.flatbuffers}"

// Netty dependencies required by Arrow memory management
implementation 'io.netty:netty-buffer:4.1.118.Final'
Expand Down
4 changes: 2 additions & 2 deletions plugins/engine-datafusion/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ dependencies {
// CheckerFramework annotations required by Arrow 17.0.0
implementation "org.checkerframework:checker-qual:3.42.0"
// FlatBuffers dependency required by Arrow 17.0.0
implementation "com.google.flatbuffers:flatbuffers-java:23.5.26"
implementation "com.google.flatbuffers:flatbuffers-java:${versions.flatbuffers}"

testImplementation "junit:junit:${versions.junit}"
testImplementation "org.hamcrest:hamcrest:${versions.hamcrest}"
testImplementation "org.mockito:mockito-core:${versions.mockito}"

testImplementation project(":modules:parquet-data-format")
// Add CSV plugin for testing
// testImplementation project(':plugins:dataformat-csv')
}
Expand Down
Loading
Loading