Skip to content

Commit

Permalink
shell: use correct format
Browse files Browse the repository at this point in the history
  • Loading branch information
Riolku committed Oct 3, 2023
1 parent 7845e6a commit 851b567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/shell/embedded_shell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ void EmbeddedShell::printExecutionResult(QueryResult& queryResult) const {
if (numTuples == 1) {
printf("(1 tuple)\n");
} else {
printf("(%llu tuples)\n", numTuples);
printf("(%lu tuples)\n", numTuples);
}
printf("Time: %.2fms (compiling), %.2fms (executing)\n", querySummary->getCompilingTime(),
querySummary->getExecutionTime());
Expand Down

0 comments on commit 851b567

Please sign in to comment.