Dirk Leser
Dirk Leser
Same happened to me a recently. I was confused that I could only see 3 topics out of >40. Only the URL showed me that an old filter condition was...
Hi Moritz, I like your proposal/mockup! Initially I have found the magnifier to set the filter, it was just confusing when coming back later and the filter was still active.
@ericel79 , you are right. ``` ROUND(SAFE_DIVIDE(total_bytes_billed, 102400000000) * 5, 2) AS cost, ``` (see https://github.com/doitintl/bigquery-optimization-queries/blob/main/information_schema/top_billed_queries_deduplicated.sql#L26 ) should be: ``` ROUND(total_bytes_billed / POW(1024, 4) * 5, 2) AS cost, ```...