helpStmtTest("execute string z as a1 string, a2 integer into #g update 1;", "EXECUTE z AS a1 string, a2 integer INTO #g UPDATE 1;", //$NON-NLS-1$ //$NON-NLS-2$
cmdStmt);
}
@Test public void testDynamicCommandStatementWithUsing() throws Exception {
SetClauseList using = new SetClauseList();
ElementSymbol a = new ElementSymbol("a"); //$NON-NLS-1$
using.addClause(a, new ElementSymbol("b")); //$NON-NLS-1$
DynamicCommand sqlCmd = new DynamicCommand();
Expression sql = new ElementSymbol("z"); //$NON-NLS-1$
sqlCmd.setSql(sql);