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