You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
10 lines
148 B
Plaintext
10 lines
148 B
Plaintext
/*
|
|
* Report total run time for each run.
|
|
*/
|
|
select r_key, r_date, sum(qr_time)
|
|
from run, queryRun
|
|
where r_key = qr_r_key
|
|
group by 1, 2
|
|
order by 1;
|
|
|