Michael J. Sullivan

Results 125 issues of Michael J. Sullivan

This happens with basically every place it can happen, but one example: ``` edgedb> create type A { create property z -> str; create property zed := A.z; }; OK:...

bug
under discussion
compiler

If we try to create an alias that with-binds a collection type that exists in the schema, we get a bogus error: ``` scope> create alias Y := (with z...

bug
high priority
compiler

We support this inside the query itself, of course, and we have most of the relevant mechanisms available as part of the alias implementation. This is essentially a dupe of...

As of #2192, if conflicting objects are inserted with `INSERT UNLESS CONFLICT` in the same query, we produce a constraint error. The other approach would be for one of the...

under discussion

See https://github.com/edgedb/edgedb/pull/3842

documentation

I tried to fire up the graphql client on our `issues` database, and it fails with ``` /home/sully/src/e/edgedb/edb/server/compiler_pool/worker.py, line 244, in compile_graphql > return graphql.compile_graphql( /home/sully/src/e/edgedb/edb/graphql/compiler.py, line 85, in compile_graphql...

bug
graphql

If you try to insert to `schema::ObjectType` or the like, we produce an ISE from postgres, since the user can't possibly provide values for things like `name__internal`. Inserting to `schema::TupleElement`...

I tried the web demo out on the two cases of the quadratic formula, and the negative case `(-b - sqrt(b^2 - 4*a*c)) / (2a)` produced this output: https://herbie.uwplse.org/demo/7c3b374107c5177485bdae893a16bc32fd361b84.b7c88a7d879b959f14e63c59c9c933cbdc874ea9/graph.html#reproduce This...

If I try to specify an array input param in the CLI, I get ``` Unimplemented input type descriptor: Array(ArrayTypeDescriptor { id: 4cf81264-f02d-46d6-ff1d-9f46c355fb3e, type_pos: TypePos(0), dimensions: [None] }) ```

bug