Examples of HKeyRowType


Examples of com.foundationdb.qp.rowtype.HKeyRowType

    @Override
    public HKey ancestorHKey(Table table)
    {
        // TODO: This does the wrong thing for hkeys derived from group index rows!
        // TODO: See bug 997746.
        HKeyRowType rowType = this.rowType().schema().newHKeyRowType(table.hKey());
        HKey ancestorHKey = new ValuesHKey(rowType, this.registry);
        copyTo(ancestorHKey);
        ancestorHKey.useSegments(table.getDepth() + 1);
        return ancestorHKey;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.