Skip to content

Commit

Permalink
[arrow] Add reader from arrow to paimon (#3996)
Browse files Browse the repository at this point in the history
  • Loading branch information
leaves12138 authored Aug 19, 2024
1 parent d0524ca commit cf8ef5e
Show file tree
Hide file tree
Showing 5 changed files with 652 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public static ArrowCStruct serializeToCStruct(
return ArrowCStruct.of(array, schema);
}

public void serializeToIpc(VectorSchemaRoot vsr, OutputStream out) {
public static void serializeToIpc(VectorSchemaRoot vsr, OutputStream out) {
try (ArrowStreamWriter writer = new ArrowStreamWriter(vsr, null, out)) {
writer.start();
writer.writeBatch();
Expand Down
Loading

0 comments on commit cf8ef5e

Please sign in to comment.