We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94085cf commit c067b8bCopy full SHA for c067b8b
script/glam/generate_glean_sql
@@ -60,9 +60,12 @@ function write_clients_daily_aggregates {
60
61
# e.g. baseline_v1
62
local tables;
63
+ # we're excluding use_counters because they are not supported in GLAM
64
+ # and generated query is too big to run
65
tables=$(
66
bq ls "$qualified" \
67
| grep TABLE \
68
+ | grep -v use_counters \
69
| awk '{print $1}'
70
)
71
# generate all of the schemas in parallel
0 commit comments