Bob den Os

Results 40 comments of Bob den Os

While it is possible to provide support for multiple drivers. It comes with quite some maintenance overhead. Especially for Postgres as it does not support some required scenarios on its...

this change still breaks `@sap/cds` tests.

We do allow writing into elements that don't exists inside the model. The distinction that this PR is trying to address is the difference between the model and the actual...

As deep updates like this can only be done to compositions it does not make sense to allow for updates that have / could result in multiple parents. ```js //...

@johannes-vogel from the original issue it looks like it is being selected from the native table. Which means that it is not going through the same process as tables which...

This is a side effect of our minimal quoting approach. Where Postgres assumes every column to be lower case. Like how HANA assumes every column to be upper case.

Seems that the github runner does not agree with this test with HANA. ``` TimeoutError: ResourceRequest timed out ```

It seems some Postgres only tests are flaky like [admin-service.test.js](https://github.com/cap-js/cds-dbs/blob/main/postgres/test/service-admin.test.js#L14) ([example](https://github.com/cap-js/cds-dbs/actions/runs/7059068341/job/19215899211?pr=367#step:6:120))

I had the same question. I didn't look into it yet, but .d.ts files are supposed to be global definitions. So the premise is that you define a namespace and...

The first try was just calling resolve view and tender the returned query to SQL, but this did not have the desired results. By replacing the view with its query...