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 b5b1547 commit 1c58b07Copy full SHA for 1c58b07
src/ops/storages/postgres.rs
@@ -583,9 +583,12 @@ impl SetupStatusCheck {
583
.value_fields_schema
584
.iter()
585
.filter(|(field_name, schema)| {
586
- existing
587
- .possible_versions()
588
- .any(|v| v.value_fields_schema.get(*field_name) != Some(schema))
+ existing.possible_versions().any(|v| {
+ v.value_fields_schema
+ .get(*field_name)
589
+ .map(to_column_type_sql)
590
+ != Some(to_column_type_sql(schema))
591
+ })
592
})
593
.map(|(k, v)| (k.clone(), v.clone()))
594
.collect(),
0 commit comments