Package org.apache.graphar.arrow
Interface ArrowTable.Static
-
- Enclosing interface:
- ArrowTable
public static interface ArrowTable.Static
-
-
Field Summary
Fields Modifier and Type Field Description static ArrowTable.Static
INSTANCE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ArrowResult<StdSharedPtr<ArrowTable>>
fromArrowArrayAndArrowSchema(@com.alibaba.fastffi.FFITypeAlias("struct ArrowArray*") long arrayAddress, @com.alibaba.fastffi.FFITypeAlias("struct ArrowSchema*") long schemaAddress)
Convert C ArrowArray and ArrowSchema to C++ arrow::Table with JNI wrote manually
-
-
-
Field Detail
-
INSTANCE
static final ArrowTable.Static INSTANCE
-
-
Method Detail
-
fromArrowArrayAndArrowSchema
ArrowResult<StdSharedPtr<ArrowTable>> fromArrowArrayAndArrowSchema(@com.alibaba.fastffi.FFITypeAlias("struct ArrowArray*") long arrayAddress, @com.alibaba.fastffi.FFITypeAlias("struct ArrowSchema*") long schemaAddress)
Convert C ArrowArray and ArrowSchema to C++ arrow::Table with JNI wrote manually- Parameters:
arrayAddress
- Address of C ArrowArrayschemaAddress
- Address of C ArrowSchema- Returns:
- ArrowTbale shared pointer Result
-
-