Skip to content

Commit b4a8b6c

Browse files
committed
release 0.14.1
1 parent 9908183 commit b4a8b6c

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

buildSrc/src/main/groovy/datafusion.java-conventions.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ java {
1515
}
1616
}
1717

18-
tasks.withType(JavaCompile) {
18+
tasks.withType(JavaCompile).configureEach {
1919
// down-compile to minimal version
2020
options.release.set(8)
2121
}

datafusion-java/write_test_files.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
55
num_rows = 100
66

77
dict_array_x = pa.DictionaryArray.from_arrays(
8-
pa.array([i % 3 for i in range(num_rows)]),
9-
pa.array(["one", "two", "three"])
8+
pa.array([i % 3 for i in range(num_rows)]), pa.array(["one", "two", "three"])
109
)
1110

1211
dict_array_y = pa.DictionaryArray.from_arrays(
13-
pa.array([i % 3 for i in range(num_rows)]),
14-
pa.array(["four", "five", "six"])
12+
pa.array([i % 3 for i in range(num_rows)]), pa.array(["four", "five", "six"])
1513
)
1614

1715
table = pa.Table.from_arrays([dict_array_x, dict_array_y], ["x", "y"])

datafusion-jni/src/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub extern "system" fn Java_org_apache_arrow_datafusion_DefaultSessionContext_re
2424
.into();
2525
let path: String = env
2626
.get_string(&path)
27-
.expect("Couldn't get name as string!")
27+
.expect("Couldn't get path as string!")
2828
.into();
2929
let context = unsafe { &mut *(pointer as *mut SessionContext) };
3030
runtime.block_on(async {

0 commit comments

Comments
 (0)