Get the total amount of time spent executing the query. Returns: timedelta: The total amount of time spent executing the query.
(self)
| 156 | return timedelta(microseconds=us) |
| 157 | |
| 158 | def execution_time(self) -> timedelta: |
| 159 | """Get the total amount of time spent executing the query. |
| 160 | |
| 161 | Returns: |
| 162 | timedelta: The total amount of time spent executing the query. |
| 163 | """ |
| 164 | us = self._raw.get("execution_time") / 1000 |
| 165 | return timedelta(microseconds=us) |
| 166 | |
| 167 | def sort_count(self) -> UnsignedInt64: |
| 168 | """Get the total number of rows which were part of the sorting for the query. |