Daniel Hutzel

Results 44 comments of Daniel Hutzel

I did a [quick performance comparison](https://github.tools.sap/cap/dev/blob/865a341de253fa4d9f6aa1f9935703bd2ff88fcf/etc/perf.js/#L36-L135), running 1e4 inserts each: - JSON Insert w/ this PR → 915 ms - JSON Insert before → 687 ms - Plain Data Insert...

Btw: `cds w cap/sample/bookshop` crashes with this PR

> currently it is not allowed to do deep UPSERT queries. Which is the test case that is failing Yes, and that test is strangely written in a way that...

These work?: ```js UPDATE(Genres) .where({ID:1}) .with({ children: [{ ID: 3 }, { ID: 4 }, { ID: 5 }] }) UPDATE(Genres,1) .with({ children: [{ ID: 3 }, { ID: 4...

Thinking twice about the approach to destroy connections on each rollback, to avoid reusing 'poisoned' `dbc`s on subsequent requests ('poisened' meaning: dangling operations in a promise chain). We might frequently...

We need to converge all related discussions and decisions. One of that was in a recent spec meeting: pass through `$search` input to database without eager translation to CQN in...

Thanks. We intentionally decided to provide only limited support for `$search` beyond simple strings, at least in SQLite, as the complexity and performance overhead would be significant, and the value...

Cool initiative @BobdenOs We should discuss that also with our Business Network contacts → they frequently have to deal with these kinds of data federation needs

> Is that required for eslint? In general, I don't like that the _Jump to Code_ shortcut always leads me to the typings... Yes, that was the reason I also...