Michael J. Sullivan

Results 117 comments of Michael J. Sullivan

Moves it to a different assert failure, but still broken, yeah

And also it is official and first-party now

> After wrapping a for statement with an order and limit I have the same error. What would be a workaround? (not using group by) > > `InternalServerError: Can't find...

This was a dupe of https://github.com/edgedb/edgedb/issues/3592, which I failed to link when I closed this as a dupe

We added casting to object types from `uuid`

For my own notes, here is the original query moved to the `cards` db: ``` with movie := ( select default::User limit 1 ), actors := ( select movie {...

There are a lot of semantic and implementation questions about this idea. It's definitely on the radar as a possibility but I have no idea about timeline or how practical...

Alright we are hoping to squeeze this into 3.0. Proposal is up here: https://github.com/edgedb/rfcs/pull/77

Can be simplified a fair amount: ``` scalar type Kind extending str; type MustBeKindA { required property kind -> Kind { constraint one_of('A'); } } ```