Aljaž Mur Eržen
Aljaž Mur Eržen
Update outdated rust dependencies.
Based on #7643 Ref #7294 ## Problem Such SQL queries: ```SQL WITH inserted as (INSERT INTO "User" (name) VALUES ('aljaz') RETURNING id) INSERT INTO "Document" (owner_id) SELECT id FROM inserted...
Since we do heed access polices in SQL INSERT/DELETE/UPDATE, we should also do that in SELECTs. This would be a breaking change, so we need a session config variable to...
Implement setting `allow_user_specified_id`: - in client connection params via Postgres wire protocol, - in SQL using `SET allow_user_specified_id = TRUE`.
At the moment, master branch supports querying computed pointer over SQL adapter. It exposes computeds in the introspection (pg_catalog and information_schema). Because neither pg_catalog or information_schema have an equivalent notion...
First of all, I love this project. Over the weekend I started a project that is basically the same thing as dprint and when looking for a TOML formatter, I...
### What's up? Follow up for Imagine we have two tables: ```elm let artists let albums ``` If you do this: ```elm from artists join albums (albums.artist_id == artists.artist_id) ```...
pg_dump scripts cannot be (reliably) restored into databases of older PostgreSQL versions. Because of that, we have failures when using edgedb with non-latest postgres. This PR does not use tpldbdump...
- **minor refactor** - **fix a flake in sql tests** - **postgres-version-aware sql introspection** This PR makes SQL introspection views depends on the version of backend PostgreSQL that we are...
PostgreSQL COPY command [does not support query parameters](https://www.postgresql.org/message-id/flat/12415.1550157763%40sss.pgh.pa.us#682d53c41bda2d21b7cd4fba5000793c). We use query params for injecting globals into queries. We want to support pg COPY statement that uses globals (in computeds /...