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