Package io.crate.executor.transport.task

Examples of io.crate.executor.transport.task.DropTableTask


            return null;
        }

        @Override
        public Void visitDropTableNode(DropTableNode node, Job context) {
            context.addTask(new DropTableTask(
                    transportActionProvider.transportDeleteIndexTemplateAction(),
                    transportActionProvider.transportDeleteIndexAction(),
                    node));
            return null;
        }
View Full Code Here

TOP

Related Classes of io.crate.executor.transport.task.DropTableTask

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.