Skip to content

Commit

Permalink
fix; keep numbers compliant with doubles
Browse files Browse the repository at this point in the history
  • Loading branch information
ivy-rew committed Oct 24, 2023
1 parent 21240ec commit d280852
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private static List<Column> createEntityFields(List<String> names, Iterator<Row>
private static Column toColumn(String name, CellType type) {
switch (type) {
case NUMERIC:
return new Column(name, Float.class);
return new Column(name, Double.class);
case STRING:
return new Column(name, String.class);
case BOOLEAN:
Expand Down

0 comments on commit d280852

Please sign in to comment.