Add query execution stats to api endpoint (#629)
This commit is contained in:
@@ -416,7 +416,7 @@ function buildTable(results, sortColumn, sortOrder, options) {
|
||||
$("#results_body").html(rows);
|
||||
|
||||
// Show number of rows rendered on the page
|
||||
$("#result-rows-count").html(results.rows.length + " rows");
|
||||
$("#result-rows-count").html(results.stats.rows_count + " rows in " + results.stats.query_duration_ms + " ms");
|
||||
}
|
||||
|
||||
function setCurrentTab(id) {
|
||||
|
||||
Reference in New Issue
Block a user