Michael J. Sullivan

Results 175 comments of Michael J. Sullivan

> > We should probably also support writing non-named tuples when a named tuple is expected > > this will be exclusive right? ex: cant have 1 named and 1...

I just pushed commits that support trailing commas for tuples, named tuples, and arrays. Mostly I did this as a personal experiment with `nom`. The combinator-y tuple that works by...

I thought this was going to have been fixed by https://github.com/edgedb/edgedb/pull/7128/, but it looks like we don't catch this at all, and the error comes from postgres. The funny bit...

I agree that what are you want to do would be useful and that it's probably worth figuring out a way to support it. That said, I think the behavior...

We don't support doing unions of types with computed properties. Eventually we'll fix this, but it's tricky for a few reasons. Try putting the shape on the outside of the...

Could you provide a definition of Status or tweak it to not use a scalar that's missing? Thanks!

Thanks! It looks like this is some sort of insane path factoring related bug. Ahhhhhh: because `.status` is path factored out, it is "visible" from its use in the nested...

> Smart. Forgot to mention, I got around it by throwing the `if` check as a part of the filter on the select. Seems to be mildly faster too. Yeah,...

Another note: the ability to have an object with a shape in the `then` clause of an `if` and and empty set in the `else` clause and have it preserve...

I'm not sure if this example is going to make people more or less likely to support this, but one trick I had in mind is writing a recursive function...