Skip to content

Commit

Permalink
feat: log when CREATE INDEX IF NOT EXISTS finishes (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
LGLO authored Jan 8, 2025
1 parent 15c3788 commit a2c8581
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,7 @@ pub(crate) async fn create_idx_ma_tx_out_ident(pool: &Pool<Postgres>) -> Result<
let sql = "CREATE INDEX IF NOT EXISTS idx_ma_tx_out_ident ON ma_tx_out(ident)";
info!("Executing '{}', this might take a while", sql);
sqlx::query(sql).execute(pool).await?;
info!("Index 'idx_ma_tx_out_ident' is created");
Ok(())
}

Expand Down

0 comments on commit a2c8581

Please sign in to comment.