Package com.foundationdb.server.service.routines

Examples of com.foundationdb.server.service.routines.MockRoutineLoader


                ViewDDL.createView(ddlFunctions, session, defaultSchema, (CreateViewNode) stmt,
                                   new AISBinderContext(ddlFunctions.getAIS(session), defaultSchema), null);
            } else if (stmt instanceof CreateSequenceNode) {
                SequenceDDL.createSequence(ddlFunctions, session, defaultSchema, (CreateSequenceNode)stmt);
            } else if (stmt instanceof CreateAliasNode) {
                RoutineDDL.createRoutine(ddlFunctions, new MockRoutineLoader(), session, defaultSchema, (CreateAliasNode)stmt);
            } else if (stmt instanceof AlterTableNode) {
                AlterTableNode atNode = (AlterTableNode) stmt;
                assert !atNode.isTruncateTable() : "TRUNCATE not supported";
                AlterTableDDL.alterTable(ddlFunctions,
                                         null /* DMLFunctions */,
 
View Full Code Here

TOP

Related Classes of com.foundationdb.server.service.routines.MockRoutineLoader

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.