Examples of resetForRead()


Examples of com.foundationdb.qp.storeadapter.indexrow.FDBIndexRow.resetForRead()

            assert pkValue.size() == 1 : parentPKIndex;
            KeyValue kv = pkValue.get(0);
            assert kv.getValue().length == 0 : parentPKIndex + ", " + kv;
            indexRow = new FDBIndexRow(this);
            FDBStoreDataHelper.unpackTuple(parentPKIndex, parentPkKey, kv.getKey());
            indexRow.resetForRead(parentPKIndex, parentPkKey, null);
        }
        return indexRow;
    }

    @Override
View Full Code Here

Examples of com.foundationdb.qp.storeadapter.indexrow.PersistitIndexRowBuffer.resetForRead()

            // Method only called if looking up a pk for which there is at least one
            // column missing from child row. Key contains the logical parent of it.
            if(exchange.hasChildren()) {
                exchange.next(true);
                indexRow = new PersistitIndexRowBuffer(this);
                indexRow.resetForRead(parentPKIndex, exchange.getKey(), null);
            }
            return indexRow;
        } catch(PersistitException | RollbackException e) {
            throw PersistitAdapter.wrapPersistitException(session, e);
        }
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.