Anthony Super
Anthony Super
In postgresql, the following works fine: ``` CREATE EXTENSION citext; CREATE TABLE examples ( example citext PRIMARY KEY); INSERT INTO examples(example) VALUES ('my cool example'), ('my even cooler example'), ('my...
Postgres allows you to create [anonymous rows](https://www.postgresql.org/docs/current/sql-expressions.html#SQL-SYNTAX-ROW-CONSTRUCTORS) for use in queries. This is quite helpful when doing keyset pagination. The following SQL... ```sql SELECT * FROM users WHERE (userRank, id)...
https://github.com/phusion/traveling-ruby#getting-started
### Issue Description [`ActiveController::Live`](https://api.rubyonrails.org/v7.1.3.4/classes/ActionController/Live.html) is a Rails module to enable livestreaming of server responses. It's quite useful to do things like generating CSVs. The way it works internally, however, makes...
Currently, the function [`composite`](https://github.com/nikita-volkov/hasql/blob/6dffd203d980fc174945f022527b4ba5c4ca7aba/library/Hasql/Encoders/All.hs#L391) builds an encoder with an OID of `unknown`. This means that trying to bind composite arrays does not work, with the following error: ```haskell ResultError (ServerError...