rel8
rel8 copied to clipboard
Hey! Hey! Can u rel8?
Thanks for the fantastic library, I have been enjoying using it to adapt a bunch of code from handrolled SQL via `postgresql-simple`. I have a SQL query that does something...
I've got a column in my database that is created via: ```sql ALTER TABLE discovery ADD COLUMN search tsvector GENERATED ALWAYS AS ... ``` which I'd like to be able...
This was discussed offline at some point, but I thought I'd just double-check that this is really what we want? The feature is still brand new so it seems worth...
I'd like access to the `
I'd like to pretend I don't have a database at all because I don't understand SQL, and am hoping rel8 can give me the SQL necessary to create the db/table...
Consider the following Rel8 program. It produces SQL which crashes. > Query Error: error: could not identify column "f1" in record data type Is this known/expected? The ultimate problem is...
How do I order by a nullable column? This doesn't work: ```hs data SomeTable f = SomeTable { someColumn :: Column f (Maybe UTCTime) } -- ... someQuery = do...