Package com.foundationdb.server.rowdata

Examples of com.foundationdb.server.rowdata.RowDefBuilder


        });
    }

    private void buildRowDefs(Session session, AkibanInformationSchema newAIS) {
        tableStatusCache.detachAIS();
        RowDefBuilder rowDefBuilder = new RowDefBuilder(session, newAIS, tableStatusCache);
        rowDefBuilder.build();
    }
View Full Code Here


        return reader.getAIS();
    }

    private void buildRowDefs(Session session, AkibanInformationSchema newAis) throws PersistitException {
        treeService.getTableStatusCache().detachAIS();
        RowDefBuilder rowDefBuilder = new RowDefBuilder(null, newAis, treeService.getTableStatusCache());
        rowDefBuilder.build();
        // This creates|verifies the trees exist for sequences.
        // TODO: Why are sequences special here?
        sequenceTrees(newAis);
    }
View Full Code Here

TOP

Related Classes of com.foundationdb.server.rowdata.RowDefBuilder

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.