# File test/src/sql_test.rb, line 69
  def testRelationWithGroupByWithoutHaving
    verify_relation('select distinct * from table where x=1 group by x, y order by x asc, y desc', 
      'select distinct * from table where x = 1 group by x, y order by x, y desc')
  end