I'm using
sequel 3.33.0
SQL Server 2008 R2

db[:table].
group_and_count(:column).
group_rollup

Expected
SELECT column, COUNT(*) AS count FROM table GROUP BY column WITH
ROLLUP

Got
SELECT column, COUNT(*) AS count FROM table GROUP BY ROLLUP (column)

-- 
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sequel-talk?hl=en.

Reply via email to