# File test/src/sql_test.rb, line 57
  def testRelationWithCompoundPredicateInWhereClause
    verify_relation('select * from table where x=1 and y=3', 
      'select * from table where (x = 1 and y = 3)')
  end