| Package | Description |
|---|---|
| org.bytedeco.arrow | |
| org.bytedeco.arrow.global | |
| org.bytedeco.parquet |
| Modifier and Type | Method and Description |
|---|---|
ChunkedArray |
Datum.chunked_array() |
ChunkedArray |
Table.column(int i)
\brief Return a column by index
|
ChunkedArray[] |
ChunkedArrayVector.get() |
ChunkedArray |
ChunkedArrayVector.Iterator.get() |
ChunkedArray |
ChunkedArrayVector.get(long i) |
ChunkedArray |
Table.GetColumnByName(BytePointer name) |
ChunkedArray |
Table.GetColumnByName(String name)
\brief Return a column by name
|
ChunkedArray |
ChunkedArrayVector.pop_back() |
ChunkedArray |
ChunkedArray.Slice(long offset)
\brief Slice from offset until end of the chunked array
|
ChunkedArray |
ChunkedArray.Slice(long offset,
long length)
\brief Construct a zero-copy slice of the chunked array with the
indicated offset and length
|
| Modifier and Type | Method and Description |
|---|---|
Status |
Table.AddColumn(int i,
Field field_arg,
ChunkedArray column,
Table out)
\brief Add column to the table, producing a new Table
|
boolean |
ChunkedArray.Equals(ChunkedArray other)
\brief Determine if two chunked arrays are equal.
|
static Status |
Table.FromChunkedStructArray(ChunkedArray array,
Table table)
\brief Construct a Table from a chunked StructArray.
|
ChunkedArrayVector.Iterator |
ChunkedArrayVector.insert(ChunkedArrayVector.Iterator pos,
ChunkedArray value) |
ChunkedArrayVector |
ChunkedArrayVector.push_back(ChunkedArray value) |
ChunkedArrayVector |
ChunkedArrayVector.put(ChunkedArray... array) |
ChunkedArrayVector |
ChunkedArrayVector.put(ChunkedArray value) |
ChunkedArrayVector |
ChunkedArrayVector.put(long i,
ChunkedArray value) |
Status |
Table.SetColumn(int i,
Field field_arg,
ChunkedArray column,
Table out)
\brief Replace a column in the table, producing a new Table
|
Status |
ChunkedArray.View(DataType type,
ChunkedArray out)
Construct a zero-copy view of this chunked array with the given
type.
|
| Constructor and Description |
|---|
ChunkedArrayVector(ChunkedArray... array) |
ChunkedArrayVector(ChunkedArray value) |
Datum(ChunkedArray value) |
| Modifier and Type | Method and Description |
|---|---|
static Status |
arrow.Filter(FunctionContext ctx,
ChunkedArray values,
Array filter,
ChunkedArray out)
\brief Filter a chunked array with a boolean selection filter
The output chunked array will be populated with values from the input at positions
where the selection filter is not 0.
|
static Status |
arrow.Filter(FunctionContext ctx,
ChunkedArray values,
ChunkedArray filter,
ChunkedArray out)
\brief Filter a chunked array with a boolean selection filter
The output chunked array will be populated with values from the input at positions
where the selection filter is not 0.
|
static Status |
arrow.Filter(FunctionContext ctx,
Table table,
ChunkedArray filter,
Table out)
\brief Filter a table with a boolean selection filter
The output record batch's columns will be populated with values from corresponding
columns of the input at positions where the selection filter is not 0.
|
static Status |
arrow.PrettyPrint(ChunkedArray chunked_arr,
PrettyPrintOptions options,
BytePointer result)
\brief Print human-readable representation of ChunkedArray
|
static Status |
arrow.PrettyPrint(ChunkedArray chunked_arr,
PrettyPrintOptions options,
Pointer sink)
\brief Print human-readable representation of ChunkedArray
|
static Status |
arrow.Take(FunctionContext ctx,
Array values,
ChunkedArray indices,
TakeOptions options,
ChunkedArray out)
\brief Take from an array of values at indices in a chunked array
The output chunked array will be of the same type as the input values
array, with elements taken from the values array at the given
indices.
|
static Status |
arrow.Take(FunctionContext ctx,
ChunkedArray values,
Array indices,
TakeOptions options,
ChunkedArray out)
\brief Take from a chunked array of values at indices in another array
The output chunked array will be of the same type as the input values
array, with elements taken from the values array at the given
indices.
|
static Status |
arrow.Take(FunctionContext ctx,
ChunkedArray values,
ChunkedArray indices,
TakeOptions options,
ChunkedArray out)
\brief Take from a chunked array of values at indices in a chunked array
The output chunked array will be of the same type as the input values
array, with elements taken from the values array at the given
indices.
|
static Status |
arrow.Take(FunctionContext ctx,
Table table,
ChunkedArray indices,
TakeOptions options,
Table out)
\brief Take from a table at indices in a chunked array
The output table will have the same schema as the input table,
with rows taken from the values array at the given
indices.
|
| Modifier and Type | Method and Description |
|---|---|
ChunkedArray |
DictionaryRecordReader.GetResult() |
Copyright © 2020. All rights reserved.