Ken Micklas
Ken Micklas
Thanks @ryantrinkle! I'll be on vacation the next week but I can review when I get back. Switching to `[Text]` is probably a good idea but I'd prefer that be...
I've also toyed with writing a totally pure backend just using `ST`.
I was also able to solve this by setting `module.nix` to ``` moduleInfo: {...}: { imports = [ ((import ./src {}).obelisk.serverModules.mkBaseEc2 moduleInfo) ]; security.acme.acceptTerms = true; } ``` I think...
I don't think topological sorting is a good approach since there can be cyclic references and we'd need to break them by adding the constraints after creating the tables. So...
Ah good point, I totally forgot that `||.` is already taken. Unless you can think of a better operator name that makes sense (I can't), then I'd suggest just giving...
I don't think it matters much but probably nice to keep the order in line with the Postgres docs where possible.
@tp-woven You're welcome to take it over! I'm happy to review but unfortunately don't have the time for major feature development on Beam these days.
I'm wondering if there are any workarounds emitting different SQL. The closest I could come up with was: ```` select * from (select * from (values (null, null)) as dummy(x,...
@fabioluz We still don't have support for this yet but PRs are welcome!
Agreed that this behavior is weird, especially because SQL doesn't allow updates with no assignments, so we have total freedom to make the behavior whatever we want in that case....