Add an overall statistic for the query (i.e. not associated with a sub query or scanner) @param name The name of the stat @param value The value to store
(final QueryStat name, final long value)
| 443 | * @param value The value to store |
| 444 | */ |
| 445 | public void addStat(final QueryStat name, final long value) { |
| 446 | overall_stats.put(name, value); |
| 447 | } |
| 448 | |
| 449 | /** |
| 450 | * Adds a stat for a sub query, replacing it if it exists. Times must be |