Skip to content

Commit a714966

Browse files
committed
Import 'cpp' and add more description.
1 parent 44f477d commit a714966

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
/**
22
* @name Sum of frontend and extractor time
33
* @description The sum of elapsed frontend time, and the sum of elapsed extractor time.
4+
* This query is for internal use only and may change without notice.
45
* @kind table
56
* @id cpp/frontend-and-extractor-time
67
*/
78

8-
select sum(@compilation c, float seconds | compilation_time(c, _, 2, seconds) | seconds) as sum_frontend_elapsed_seconds,
9-
sum(@compilation c, float seconds | compilation_time(c, _, 4, seconds) | seconds) as sum_extractor_elapsed_seconds
9+
import cpp
10+
11+
select sum(Compilation c, float seconds | compilation_time(c, _, 2, seconds) | seconds) as sum_frontend_elapsed_seconds,
12+
sum(Compilation c, float seconds | compilation_time(c, _, 4, seconds) | seconds) as sum_extractor_elapsed_seconds

0 commit comments

Comments
 (0)