Wolfgang Walther
Wolfgang Walther
I'm using `jsonschema-rs` inside PostgreSQL via `plpython3u`. When I use PG's `TRANSFORM FOR TYPE JSONB` instead of python's `json.loads(...)` floats are converted to `decimal.Decimal`. This results in: ``` ValueError: Unsupported...
I'm interested in adding [PostgREST](http://postgrest.org/en/latest/) as a framework. PostgREST is different compared to other frameworks in that it keeps all business logic in the database (e.g. through stored procedures). Is...
# Problem This builds on some ideas we had earlier: @steve-chavez [understood resource embedding as functions](https://github.com/PostgREST/postgrest/issues/915#issuecomment-776060792): > So, currently we support embedding - or joining - with the embed(col1,col2) syntax....
This demonstrates a breaking change in the latest pre-release by adding a new test for openapi output of views. Related to #2356.
This is happening on the latest pre-release and was introduced in d2719420f46a537a75d76a4666f8bffec582d4f8 / #2254. PK columns have a description field in the OpenAPI output like this: `This is a Primary...
Not to be merged right now, just putting this here for later. PG 9.6 has reached EOL already. Once the next set of minor releases for PG comes out, it...
Currently when making a request with `Accept: application/vnd.pgrst.object+json`, we get the following response, when ` 1` rows are returned: ```json { "details": "Results contain 0 rows, application/vnd.pgrst.object+json requires 1 row",...
We have discussed a few shortcomings of our current query language (expressions in the query string). Taking those suggestions together - and adding a few more points, that seem to...
As discussed in https://github.com/PostgREST/postgrest/pull/1694#discussion_r549840741, I'm splitting up the overlay into another PR. We need to increase our overall coverage by a fair bit, before merging this.
I was recently pointed at https://begriffs.com/posts/2014-12-30-intro-to-postgrest.html, where Joe presented the core ideas that PostgREST was built on initially. From 8:30 on, he talks about schema-based versioning with **fall-through**. I think...