rfcs icon indicating copy to clipboard operation
rfcs copied to clipboard

RFCs for major changes to EdgeDB

Results 24 rfcs issues
Sort by recently updated
recently updated
newest added

Taken from [Spectrum](https://spectrum.chat/edgedb/general/feature-request-reduce-operator-in-edgeql~78e141dd-c63c-467b-984a-29f8a9a1d64c). This is how i first imagined the syntax: ``` FOR accumulator, variable IN "{" iterator-set [, ...] "}" REDUCE output-expr ; ``` Note that this doesn't allow...

# Proposal 1. Always require `edgedb install --method=package` or `edgedb install --method=docker` for installation in non-interactive mode 2. Without that, print something like this: ``` No installation method chosen, add:...

There are two concerns that RFC 1001 covers: 1. The process of updating the installed server packages, which is done via `edgedb server install --update` in the current version of...

# Motivation Insert statements are usually look like: ```python db.fetchrow(""" INSERT User { first_name := $first_name, last_name := $last_name, birth_date := $birth_date, } """, dict( first_name=form['first_name'], last_name=form['last_name'], birth_date=form['birth_date'], )) ```...

Draft an RFC proposing the elimination of path factoring. Any feedback about what to expand?

I've left some in Draft that are at least partially implemented, since I'm not totally sure if the RFC reflects the current state.

This is brought over from [Discord](https://discord.com/channels/841451783728529451/1317051251569201173/1318232267306565632), where we briefly discussed a Stripe/payments extension that's already in the roadmap. Let's discuss this here briefly and we can then make a draft...