v0.1.0-pre.051

This commit is contained in:
2026-07-25 21:47:21 +02:00
parent 50fd7467f8
commit 184fe6da88
11 changed files with 304 additions and 24 deletions

View File

@@ -161,7 +161,7 @@ pub(crate) fn table_snapshots_from_pg(
) -> std::vec::Vec<crate::DemoSqlTableSnapshot> {
let mut output = std::vec::Vec::new();
for value in values {
output.push(table_snapshot_from_pg(value));
output.push(crate::table_snapshot_from_pg(value));
}
return output;
}