Skip to content

Commit

Permalink
a small fix in pg2arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
kaigai committed Jun 20, 2023
1 parent fccb4b9 commit 5a666e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/arrow_nodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,8 @@ __dumpArrowMessage(SQLbuffer *buf, ArrowNode *node)
m->version == ArrowMetadataVersion__V1 ? "V1" :
m->version == ArrowMetadataVersion__V2 ? "V2" :
m->version == ArrowMetadataVersion__V3 ? "V3" :
m->version == ArrowMetadataVersion__V4 ? "V4" : "???");
m->version == ArrowMetadataVersion__V4 ? "V4" :
m->version == ArrowMetadataVersion__V5 ? "V5" : "???");
__dumpArrowNode(buf, (ArrowNode *)&m->body);
sql_buffer_printf(buf, ", bodyLength=%lu}", m->bodyLength);
}
Expand Down

0 comments on commit 5a666e9

Please sign in to comment.