Felipe Coury

Results 31 comments of Felipe Coury

+1 this makes debugging a whole lot harder

Apparently mongodb doesn't work this way -- seems like the updates are atomic _per document_. You can see that the update to the last item of this collection wasn't applied...

We might need to have a streaming update: 1. retrieve all the matching rows for the `query` part of the update 2. get next row 3. run all the updates...

OK, this keeps getting more interesting: ``` test> db.trx.insertMany([ {x: 1, name: 'John', counter: 1}, {x: 2, name: 'Alex', counter: 'Str'}, {x: 3, name: 'Kate', counter: 3} ]) { acknowledged:...

@arthurthefourth this is interesting. I am on 0.23 from the link @hannesa2 sent me right now and it's working fine. Did you try deleting the .app file, and the terminal...

@arthurthefourth that's really unfortunate, I just installed 0.23 and it worked flawlessly.

OK, after checking the dependencies on your example projects, I found that I needed to update all my `@codemirror/*` dependencies to `^0.19` on my `package.json` file. Here's the final file...

__IMPORTANT__: I completely forgot to say that I would of course credit the project and the authors.

Please take a look at the work done on this PR as I think it overlaps a lot with the dynamic query generation needed for this feature: https://github.com/FerretDB/FerretDB/pull/850

For future reference, this only happened when I had the sold linker configured. Removing it worked fine. This was my .cargo/config.toml: ```shell > $ cat ~/.cargo/config.toml [target.aarch64-apple-darwin] linker = "clang"...