Doug Clinton
Doug Clinton
@kuzkdmy I have a need for client Digest auth and came across this PR. Any update on it?
> For `Field` it might look like this: > > ```scala > case class Field[Ctx, Val, F[_] : Effect](...) > ``` In fact, in most places you would not need...
I'm seeing similar problems with swagger-play 1.5.3 and Play 2.5.14.
Ok. Interesting. Postgresql accepts both queries (which I accept doesn't necessarily make them correct :-) ) In terms of the algebra, I don't know the formal details well enough to...
Yes, you are right. I was making the assumption that since the query worked against a Postgresql database that it was accepting similar SQL. In fact Slick generates this sql...
Actually, on further investigation it's more complicated than that, but I still think the complication is at the Slick end of things.
I've been tracing through the code with the debugger and think I've found where the problem lies. Slick actually produces a query like this: ``` select x34."auto_import_login" as x10, x34."uuid"...
Hmm. Not sure if that issue is directly relevant. H2 parses the query correctly, but renders the SQL in a different form when creating the view in such a way...
So the question is, is the incoming SQL valid? If so, then the issue is in the H2 sql generator that re-renders it as invalid SQL.
@lukaseder do you have any thoughts on this?