Frederick Pringle

Results 7 comments of Frederick Pringle

For anyone else looking for multi-package support with `get-tested` (great action btw thanks @Kleidukos!), I hacked together a workaround [here](https://github.com/fpringle/servant-routes/blob/31dd405004974c167ad6c1305f6da656f52b2de5/.github/workflows/haskell.yml), feel free to copy. The action finds packages by looking...

Seconded! This restriction doesn't make sense to me either; if I want to build my entire fleet I have to do `colmena apply switch --on '@not-local' && colmena apply-local switch`,...

Ah, I see. Would it be possible to add command-line options to configure passwords on a per-user basis?

I'd be happy to! Could you point me in the right direction where I should start implementing it? Since truncate is quite a simple command I assume it won't be...

Not in Opaleye, but now you mention it I do notice that postgresql-simple has [QualifiedIdentifier](https://hackage.haskell.org/package/postgresql-simple-0.6.5/docs/Database-PostgreSQL-Simple-Types.html#t:QualifiedIdentifier) which seems to be isomorphic. I'll still need to depend on `TableIdentifier`, which I get...

I'd imagine you could replce `TableIdentifier` with `QualifiedIdentifier` pretty easily, since they're identical (except field names), and internal. I'll do as you suggested, except I'll just use `QualifiedIdentifier` as the...

In case you're curious, [this](https://github.com/fpringle/effectful-postgresql/pull/4/files#diff-3fb23085b5e5679b723826a6454b5cf48c93fa7ab02c01fba6bb19140c595fb8) PR contains the code that uses `QualifiedIdentifier` as a map key to count DB operations.