You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! This the original repository but active maintenance is happening over on my fork of Esqueleto. I've refiled your issue here: bitemyapp/esqueleto#90
countRows
is simply the stringCOUNT(*)
,makeSelect
always emitsSELECT DISTINCT
. Thus the following invalid SQL is produced:Ideally
makeSelect
would be somewhat smart and automagically form the correctSELECT COUNT(DISTINCT *)
.My guess is we would have to treat
countRows
somewhat more special, than we do currently.The text was updated successfully, but these errors were encountered: