use of org.teiid.query.sql.proc.RaiseStatement in project teiid by teiid.
the class TestSQLStringVisitor method testRaiseErrorStatement.
@Test
public void testRaiseErrorStatement() {
// $NON-NLS-1$
RaiseStatement errStmt = new RaiseStatement(new Constant("My Error"));
// $NON-NLS-1$
helpTest(errStmt, "RAISE 'My Error';");
}
use of org.teiid.query.sql.proc.RaiseStatement in project teiid by teiid.
the class TestSQLStringVisitor method testCreateUpdateProcedure2.
@Test
public void testCreateUpdateProcedure2() {
Delete d1 = new Delete();
// $NON-NLS-1$
d1.setGroup(new GroupSymbol("g"));
CommandStatement cmdStmt = new CommandStatement(d1);
// $NON-NLS-1$
AssignmentStatement assigStmt = new AssignmentStatement(new ElementSymbol("a"), new Constant(new Integer(1)));
// $NON-NLS-1$
RaiseStatement errStmt = new RaiseStatement(new Constant("My Error"));
Block b = new Block();
b.addStatement(cmdStmt);
b.addStatement(assigStmt);
b.addStatement(errStmt);
CreateProcedureCommand cup = new CreateProcedureCommand(b);
// $NON-NLS-1$
helpTest(cup, "BEGIN\nDELETE FROM g;\na = 1;\nRAISE 'My Error';\nEND");
}
use of org.teiid.query.sql.proc.RaiseStatement in project teiid by teiid.
the class TestRaiseErrorStatement method testEquivalence.
public void testEquivalence() {
RaiseStatement s1 = sample1();
RaiseStatement s1a = sample1();
int equals = 0;
UnitTestUtil.helpTestEquivalence(equals, s1, s1a);
}
use of org.teiid.query.sql.proc.RaiseStatement in project teiid by teiid.
the class TestRaiseErrorStatement method testNonEquivalence.
public void testNonEquivalence() {
RaiseStatement s1 = sample1();
RaiseStatement s2 = sample2();
int equals = -1;
UnitTestUtil.helpTestEquivalence(equals, s1, s2);
}
Aggregations