# File test/src/sql_test.rb, line 45
  def testSubRelationWithAlias
    verify_relation('select * from ((select a, b, c.* from c)) x', 
      'select * from (select a, b, c.* from c) AS x')
  end