Package org.teiid.query.sql.symbol

Examples of org.teiid.query.sql.symbol.XMLParse


      f.setPassing(Arrays.asList(new DerivedColumn(null, new ElementSymbol("foo"))));
      helpTestExpression("xmlquery('/x' passing foo null on empty)", "XMLQUERY('/x' PASSING foo NULL ON EMPTY)", f);
    }
   
    @Test public void testXmlParse() throws Exception {
      XMLParse f = new XMLParse();
      f.setDocument(true);
      f.setExpression(new ElementSymbol("x"));
      f.setWellFormed(true);
      helpTestExpression("xmlparse(document x wellformed)", "XMLPARSE(DOCUMENT x WELLFORMED)", f);
    }
View Full Code Here

TOP

Related Classes of org.teiid.query.sql.symbol.XMLParse

Copyright © 2018 www.massapicom. 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.