33
44SELECT
55 client,
6- COUNT (* ) AS total_requests,
6+ COUNT (1 ) AS total_requests,
77
88 COUNTIF(uses_cache_control) AS total_using_cache_control,
99 COUNTIF(uses_max_age) AS total_using_max_age,
@@ -22,24 +22,24 @@ SELECT
2222 NOT uses_cache_control AND uses_expires
2323 ) AS total_using_only_expires,
2424
25- COUNTIF(uses_cache_control) / COUNT (* ) AS pct_cache_control,
26- COUNTIF(uses_max_age) / COUNT (* ) AS pct_using_max_age,
27- COUNTIF(uses_expires) / COUNT (* ) AS pct_using_expires,
25+ COUNTIF(uses_cache_control) / COUNT (1 ) AS pct_cache_control,
26+ COUNTIF(uses_max_age) / COUNT (1 ) AS pct_using_max_age,
27+ COUNTIF(uses_expires) / COUNT (1 ) AS pct_using_expires,
2828 COUNTIF(
2929 uses_max_age AND uses_expires
30- ) / COUNT (* ) AS pct_using_max_age_and_expires,
30+ ) / COUNT (1 ) AS pct_using_max_age_and_expires,
3131 COUNTIF(
3232 uses_cache_control AND uses_expires
33- ) / COUNT (* ) AS pct_using_both_cc_and_expires,
33+ ) / COUNT (1 ) AS pct_using_both_cc_and_expires,
3434 COUNTIF(
3535 NOT uses_cache_control AND NOT uses_expires
36- ) / COUNT (* ) AS pct_using_neither_cc_nor_expires,
36+ ) / COUNT (1 ) AS pct_using_neither_cc_nor_expires,
3737 COUNTIF(
3838 uses_cache_control AND NOT uses_expires
39- ) / COUNT (* ) AS pct_using_only_cache_control,
39+ ) / COUNT (1 ) AS pct_using_only_cache_control,
4040 COUNTIF(
4141 NOT uses_cache_control AND uses_expires
42- ) / COUNT (* ) AS pct_using_only_expires
42+ ) / COUNT (1 ) AS pct_using_only_expires
4343
4444FROM (
4545 SELECT
0 commit comments