Package com.foundationdb.server.service.session

Examples of com.foundationdb.server.service.session.Session


    private class DropIndex implements Runnable
    {
        @Override
        public void run()
        {
            Session session = serviceManager().getSessionService().createSession();
            TableName tableName = new TableName (SCHEMA, "o");
            synchronized (lock) {
                lock.notify();
            }
            ddl().dropTableIndexes(session, tableName, Collections.singletonList("idx3_o"));
View Full Code Here


        return ais;
    }

    public AkibanInformationSchema ais(String... ddl) {
        DDLFunctions ddlFunctions = new CreateOnlyDDLMock();
        Session session = null;
        ddl(ddlFunctions, session, ddl);
        return ddlFunctions.getAIS(session);
    }
View Full Code Here

TOP

Related Classes of com.foundationdb.server.service.session.Session

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.