Skip to content

Commit 49ba458

Browse files
committed
fix bigint to long
1 parent 6f24cd7 commit 49ba458

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/org/embulk/formatter/fast_jsonl/json/ColumnVisitor.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ case class ColumnVisitor(reader: PageReader,
4141
}
4242

4343
override def longColumn(column: Column): Unit =
44-
value(column, reader.getLong).foreach(v => put(column, Json.fromBigInt(v)))
44+
value(column, reader.getLong).foreach(v => put(column, Json.fromLong(v)))
4545

4646
override def doubleColumn(column: Column): Unit =
4747
value(column, reader.getDouble).foreach(v =>

0 commit comments

Comments
 (0)