diff --git a/README.md b/README.md index 6400a92..6ceb348 100644 --- a/README.md +++ b/README.md @@ -63,3 +63,5 @@ Prisma Client Rust is not an official Prisma product, but has been [generously s - [Robert Craige](https://github.com/sponsors/RobertCraigie) for writing tests for [Prisma Client Python](https://github.com/RobertCraigie/prisma-client-py) that I have adapted. - [Spacedrive](https://spacedrive.com) for hiring me and letting me work on this. (sure I'm a founding member but thanks anyway!) +# test Thu Jan 29 14:00:19 PST 2026 +# test Thu Jan 29 14:10:26 PST 2026 diff --git a/crates/lib/src/lib.rs b/crates/lib/src/lib.rs index f0fe949..2f53519 100644 --- a/crates/lib/src/lib.rs +++ b/crates/lib/src/lib.rs @@ -117,6 +117,7 @@ pub type ObjectFields = Vec<(String, PrismaValue)>; /// Creates a PrismaValue::Object from a list of key-value pairs. /// If a key has multiple values that are PrismaValue::Objects, they will be merged. pub fn merge_fields(fields: Vec<(String, PrismaValue)>) -> Vec<(String, PrismaValue)> { + todo!(); let mut merged = HashMap::new(); for el in fields {