Package com.foundationdb.qp.row

Examples of com.foundationdb.qp.row.Row


    // I/U/D pre-to-post FINAL
    //

    @Test
    public void insertPreToPostFinal_C() {
        Row newRow = testRow(cRowType, 5, 5000);
        dmlPreToPostFinal(insertCreator(cID, newRow));
    }
View Full Code Here


        dmlPreToPostFinal(insertCreator(cID, newRow));
    }

    @Test
    public void updatePreToPostFinal_C() {
        Row oldRow = testRow(cRowType, 2, 2000);
        Row newRow = testRow(cRowType, 2, 2001);
        dmlPreToPostFinal(updateCreator(cID, oldRow, newRow));
    }
View Full Code Here

        dmlPreToPostFinal(updateCreator(cID, oldRow, newRow));
    }

    @Test
    public void deletePreToPostFinal_C() {
        Row oldRow = groupRows.get(1);
        dmlPreToPostFinal(deleteCreator(cID, oldRow));
    }
View Full Code Here

        dmlPreToPostFinal(deleteCreator(cID, oldRow));
    }

    @Test
    public void insertPreToPostFinal_A() {
        Row newRow = testRow(aRowType, 21, 2, 21000);
        dmlPreToPostFinal(insertCreator(aID, newRow), insert(groupRows, 3, newRow), false);
    }
View Full Code Here

        dmlPreToPostFinal(insertCreator(aID, newRow), insert(groupRows, 3, newRow), false);
    }

    @Test
    public void updatePreToPostFinal_A() {
        Row oldRow = testRow(aRowType, 20, 2, 20000);
        Row newRow = testRow(aRowType, 20, 2, 20001);
        dmlPreToPostFinal(updateCreator(aID, oldRow, newRow), replace(groupRows, 2, newRow), false);
    }
View Full Code Here

        dmlPreToPostFinal(updateCreator(aID, oldRow, newRow), replace(groupRows, 2, newRow), false);
    }

    @Test
    public void deletePreToPostFinal_A() {
        Row row = groupRows.get(2);
        dmlPreToPostFinal(deleteCreator(aID, row), remove(groupRows, 2), false);
    }
View Full Code Here

        dmlPreToPostFinal(deleteCreator(aID, row), remove(groupRows, 2), false);
    }

    @Test
    public void insertPreToPostFinal_O() {
        Row newRow = testRow(oRowType, 26, 2, 26000);
        dmlPreToPostFinal(insertCreator(oID, newRow));
    }
View Full Code Here

        dmlPreToPostFinal(insertCreator(oID, newRow));
    }

    @Test
    public void updatePreToPostFinal_O() {
        Row oldRow = testRow(oRowType, 25, 2, 25000);
        Row newRow = testRow(oRowType, 25, 2, 25001);
        dmlPreToPostFinal(updateCreator(oID, oldRow, newRow));
    }
View Full Code Here

        dmlPreToPostFinal(deleteCreator(oID, groupRows.get(3)));
    }

    @Test
    public void insertPreToPostFinal_I() {
        Row newRow = testRow(iRowType, 251, 25, 251000);
        dmlPreToPostFinal(insertCreator(iID, newRow));
    }
View Full Code Here

        dmlPreToPostFinal(insertCreator(iID, newRow));
    }

    @Test
    public void updatePreToPostFinal_I() {
        Row oldRow = testRow(iRowType, 250, 25, 250000);
        Row newRow = testRow(iRowType, 250, 25, 250001);
        dmlPreToPostFinal(updateCreator(iID, oldRow, newRow));
    }
View Full Code Here

TOP

Related Classes of com.foundationdb.qp.row.Row

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.