Skip to content

Commit

Permalink
[chore] merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
CorentinTh committed Mar 12, 2019
1 parent 60f1028 commit d73120d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ETL/src/ETL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ long ETL::ingest(std::string path) {
queryBuilder.bind(row.cells[2].as_double());
queryBuilder.bind(row.cells[3].as_str());
} else if (dataType == MEASURE) {
queryBuilder.bind(utils::parseISO8601Date(row.cells[0].as_str()) / 1000); //ms -> s
queryBuilder.bind(utils::parseISO8601Date(row.cells[0].as_str())); //ms -> s
queryBuilder.bind(row.cells[1].as_str());
queryBuilder.bind(row.cells[2].as_str());
queryBuilder.bind(row.cells[3].as_double());
Expand Down

0 comments on commit d73120d

Please sign in to comment.