Package org.teiid.query.sql.lang

Examples of org.teiid.query.sql.lang.SubqueryFromClause.clone()


        UnitTestUtil.helpTestEquivalence(equals, s1, s2);
    }
   
    public void testClone() {
        SubqueryFromClause s1 = example1();
        Object clonedS1 = s1.clone();
        assertEquals(s1, clonedS1);
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.