Package com.foundationdb.qp.rowtype

Examples of com.foundationdb.qp.rowtype.RowType


                    selectAncestor(1)),
                parentRowType,
                childRowType,
                LEFT_JOIN,
                KEEP_PARENT);
        RowType pcRowType = plan.rowType();
        checkRowFields(pcRowType);
        Row[] expected = new Row[]{
            row(ancestorRowType, 1L, "a1"),
            row(parentRowType, 11L, 1L, "p1"),
            row(beforeChildRowType, 111L, 11L, "b1"),
View Full Code Here


                    selectAncestor(2)),
                parentRowType,
                childRowType,
                LEFT_JOIN,
                KEEP_PARENT);
        RowType pcRowType = plan.rowType();
        checkRowFields(pcRowType);
        Row[] expected = new Row[]{
            row(ancestorRowType, 2L, "a2"),
            row(parentRowType, 22L, 2L, "p2"),
            row(pcRowType, 22L, 2L, "p2", null, null, null),
View Full Code Here

                    selectAncestor(3)),
                parentRowType,
                childRowType,
                LEFT_JOIN,
                KEEP_PARENT);
        RowType pcRowType = plan.rowType();
        checkRowFields(pcRowType);
        Row[] expected = new Row[]{
            row(ancestorRowType, 3L, "a3"),
            row(parentRowType, 33L, 3L, "p3"),
            row(beforeChildRowType, 333L, 33L, "b3"),
View Full Code Here

                    selectAncestor(4)),
                parentRowType,
                childRowType,
                LEFT_JOIN,
                KEEP_PARENT);
        RowType pcRowType = plan.rowType();
        checkRowFields(pcRowType);
        Row[] expected = new Row[]{
            row(ancestorRowType, 4L, "a4"),
            row(parentRowType, 41L, 4L, "p41"),
            row(pcRowType, 41L, 4L, "p41", null, null, null),
View Full Code Here

                flattenPB,
                parentRowType,
                childRowType,
                LEFT_JOIN,
                KEEP_PARENT);
        RowType pbRowType = flattenPB.rowType();
        checkRowFields(pbRowType);
        RowType pcRowType = plan.rowType();
        checkRowFields(pcRowType);
        Row[] expected = new Row[]{
            row(ancestorRowType, 1L, "a1"),
            row(parentRowType, 11L, 1L, "p1"),
            row(pbRowType, 11L, 1L, "p1", 111L, 11L, "b1"),
View Full Code Here

                flattenPB,
                parentRowType,
                childRowType,
                LEFT_JOIN,
                KEEP_PARENT);
        RowType pbRowType = flattenPB.rowType();
        checkRowFields(pbRowType);
        RowType pcRowType = plan.rowType();
        checkRowFields(pcRowType);
        Row[] expected = new Row[]{
            row(ancestorRowType, 2L, "a2"),
            row(parentRowType, 22L, 2L, "p2"),
            row(pbRowType, 22L, 2L, "p2", null, null, null),
View Full Code Here

                flattenPB,
                parentRowType,
                childRowType,
                LEFT_JOIN,
                KEEP_PARENT);
        RowType pbRowType = flattenPB.rowType();
        checkRowFields(pbRowType);
        RowType pcRowType = plan.rowType();
        checkRowFields(pcRowType);
        Row[] expected = new Row[]{
            row(ancestorRowType, 3L, "a3"),
            row(parentRowType, 33L, 3L, "p3"),
            row(pbRowType, 33L, 3L, "p3", 333L, 33L, "b3"),
View Full Code Here

                flattenPB,
                parentRowType,
                childRowType,
                LEFT_JOIN,
                KEEP_PARENT);
        RowType pbRowType = flattenPB.rowType();
        checkRowFields(pbRowType);
        RowType pcRowType = plan.rowType();
        checkRowFields(pcRowType);
        Row[] expected = new Row[]{
            row(ancestorRowType, 4L, "a4"),
            row(parentRowType, 41L, 4L, "p41"),
            row(pbRowType, 41L, 4L, "p41", null, null, null),
View Full Code Here

                flattenPA,
                parentRowType,
                childRowType,
                LEFT_JOIN,
                KEEP_PARENT);
        RowType paRowType = flattenPA.rowType();
        checkRowFields(paRowType);
        RowType pcRowType = plan.rowType();
        checkRowFields(pcRowType);
        Row[] expected = new Row[]{
            row(ancestorRowType, 1L, "a1"),
            row(parentRowType, 11L, 1L, "p1"),
            row(beforeChildRowType, 111L, 11L, "b1"),
View Full Code Here

                flattenPA,
                parentRowType,
                childRowType,
                LEFT_JOIN,
                KEEP_PARENT);
        RowType paRowType = flattenPA.rowType();
        checkRowFields(paRowType);
        RowType pcRowType = plan.rowType();
        checkRowFields(pcRowType);
        Row[] expected = new Row[]{
            row(ancestorRowType, 2L, "a2"),
            row(parentRowType, 22L, 2L, "p2"),
            row(pcRowType, 22L, 2L, "p2", null, null, null),
View Full Code Here

TOP

Related Classes of com.foundationdb.qp.rowtype.RowType

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.