I have this sql line:

count(*) OVER (PARTITION BY sender->>'email') AS "count" 


And I translated to this:

.select_append { count.function.over(partition: sender.get_text('email')).as
(:count) }

But this gives
count()
instead of
count(*)

This causes an error. How can i add asterisk to the count?

-- 
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sequel-talk+unsubscr...@googlegroups.com.
To post to this group, send email to sequel-talk@googlegroups.com.
Visit this group at https://groups.google.com/group/sequel-talk.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sequel-talk/37fc4f9d-570c-40a4-805d-a15de05da26b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to