Skip to content

Commit

Permalink
Add row number of row results to BQL
Browse files Browse the repository at this point in the history
  • Loading branch information
xllora committed Sep 14, 2017
1 parent 39383f9 commit 2f01777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/vcli/bw/repl/repl.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func REPL(driver storage.Store, input *os.File, rl ReadLiner, chanSize, bulkSize
if len(table.Bindings()) > 0 {
fmt.Println(table.String())
}
fmt.Println("[OK] Time spent: ", time.Now().Sub(now))
fmt.Printf("[OK] %d rows retrived. Time spent: %v.\n", table.NumRows(), time.Now().Sub(now))
}
done <- false
}
Expand Down

0 comments on commit 2f01777

Please sign in to comment.