Laurence Isla

Results 66 issues of Laurence Isla

Full table updates where disallowed in 86574c8. This PR brings back that functionality because of the reasons mentioned here: https://github.com/PostgREST/postgrest/pull/2195#discussion_r932946412. This issue is also related, mentions discussions on how to...

Closes #2314 - [x] Full support for bulk-delete - [x] Modify error message from 204 to 422 when body is missing/empty - [x] Tests - [x] Refactor - [x] Changelog...

WIP - Needs more discussion --- Using this idea https://github.com/PostgREST/postgrest/issues/2125#issuecomment-1200054135, the underscore operators will filter using the keys in the body. This PR implements the following: - The `_eq` operator...

Resolves part of #1210. As noted in the issue, nested transactions won't be implemented - [x] Identify stored procedures in the schema cache - [ ] Query the data from...

### Environment * PostgreSQL version: 14.2 * PostgREST version: 9.0.0.20220211 ### Description of issue The `pField` function does not ignore trailing spaces when a column is selected: ``` /table?select=name,join (*)...

bug
hygiene

Related PRs: - [x] https://github.com/PostgREST/postgrest/pull/2424 - [ ] https://github.com/PostgREST/postgrest/pull/2262 - [ ] https://github.com/PostgREST/postgrest/pull/2272 - [x] https://github.com/PostgREST/postgrest/pull/2368 - [x] https://github.com/PostgREST/postgrest/pull/2400

Adds a TimescaleDB integration tutorial. Related to #467.

There's an issue right now with binaries sent using `multipart/form-data` https://github.com/PostgREST/postgrest/issues/922#issuecomment-454085191, but there is an alternative using Javascript, for example with [fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API): ```javascript const input = document.getElementById('myFileInput''); fetch('http://localhost:3000/rpc/upload_binary', { method:...

Mentioned in https://github.com/PostgREST/postgrest-docs/pull/430#discussion_r824708713

Currently, the [auth page](https://postgrest.org/en/v8.0/auth.html) gives an example for log in but not for sign up. Adding that would show a simple but complete authentication process. Maybe add an example for...