Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
zorancv committed Jun 24, 2024
1 parent c064dff commit 575164b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions store/postgres/src/relational/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ impl IndexList {
table_name: &String,
dest_table: &Table,
postponed: bool,
concurent_if_not_exist: bool,
concurrent_if_not_exist: bool,
) -> Result<Vec<(Option<String>, String)>, Error> {
let mut arr = vec![];
if let Some(vec) = self.indexes.get(table_name) {
Expand All @@ -772,7 +772,7 @@ impl IndexList {
{
if let Ok(sql) = ci
.with_nsp(namespace.to_string())?
.to_sql(concurent_if_not_exist, concurent_if_not_exist)
.to_sql(concurrent_if_not_exist, concurrent_if_not_exist)
{
arr.push((ci.name(), sql))
}
Expand All @@ -781,6 +781,7 @@ impl IndexList {
}
Ok(arr)
}

pub fn recreate_invalid_indexes(
&self,
conn: &mut PgConnection,
Expand Down

0 comments on commit 575164b

Please sign in to comment.