Skip to content

Commit

Permalink
Fixing function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Pigott committed Dec 8, 2018
1 parent 5bfd6a2 commit a6fb1be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ public static VectorSchemaRoot sqlToArrow(ResultSet resultSet, JdbcToArrowConfig
Preconditions.checkArgument(config.isValid(), "The configuration must be valid");

VectorSchemaRoot root = VectorSchemaRoot.create(
JdbcToArrowUtils.jdbcToArrowSchema(resultSet.getMetaData(), config.getCalendar(), config.includeMetadata()),
JdbcToArrowUtils.jdbcToArrowSchema(resultSet.getMetaData(), config),
config.getAllocator());
JdbcToArrowUtils.jdbcToArrowVectors(resultSet, root, config.getCalendar());
return root;
Expand Down

0 comments on commit a6fb1be

Please sign in to comment.