Will
Results
2
issues of
Will
# Describe the bug In Postgres, when you combine `ON CONFLICT DO NOTHING` with `RETURNING`, the conflicting rows are not returned. # To Reproduce ```sql CREATE TABLE example (id bigint...
When I implement a `Generator` with `napi9` like this: ```rust #[napi(iterator)] pub struct Foo {} impl Generator for Foo { Yield = bool; Next = (); Return = (); fn...