create.setElementSymbolsAsColumns(columns);
helpTest("Create local TEMPORARY table tempTable (c1 varchar, c2 tinyint, c3 smallint, c4 real, c5 decimal)", "CREATE LOCAL TEMPORARY TABLE tempTable (c1 varchar, c2 tinyint, c3 smallint, c4 real, c5 decimal)", create); //$NON-NLS-1$
}
@Test public void testXmlElement() throws Exception {
XMLElement f = new XMLElement("table", Arrays.asList((Expression)new Constant("x")));
helpTestExpression("xmlelement(name \"table\", 'x')", "XMLELEMENT(NAME \"table\", 'x')", f);
}