checkpoint for re-enabling SQL pattern matching

This commit is contained in:
2026-06-11 15:25:21 -04:00
parent d41209e7c1
commit 5133283795
2 changed files with 2 additions and 0 deletions

View File

@ -951,6 +951,7 @@ impl Merger {
let mut notification = serde_json::Map::new();
notification.insert("complete".to_string(), Value::Object(complete));
notification.insert("new".to_string(), new_val_obj.clone());
notification.insert("kind".to_string(), Value::String(change_kind.to_string()));
if old_val_obj != Value::Null {
notification.insert("old".to_string(), old_val_obj.clone());

View File

@ -11,6 +11,7 @@ impl Expect {
return Err(e);
}
}
self.assert_pattern(actual)?;
Ok(())
}