You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create index if not exists collector_progress_start_time_step_idx on collector_progress (start_time, step) where start_time is not null and end_time is not null;
209
209
"#,
210
-
r#"alter table benchmark add column category text not null"#,
210
+
// We default to secondary for all benchmarks, and then let the collector
211
+
// apply new values once it runs.
212
+
r#"
213
+
alter table benchmark add column category text not null DEFAULT 'secondary';
0 commit comments