12 lines
380 B
Rust
12 lines
380 B
Rust
use crate::{
|
|
cleanup, delete_where_symbols, optimize, select_where_symbols, set_fresh_where_symbols,
|
|
types::Backfill, upsert_batch,
|
|
};
|
|
|
|
select_where_symbols!(Backfill, "backfills_bars");
|
|
upsert_batch!(Backfill, "backfills_bars");
|
|
delete_where_symbols!("backfills_bars");
|
|
cleanup!("backfills_bars");
|
|
optimize!("backfills_bars");
|
|
set_fresh_where_symbols!("backfills_bars");
|