Repository: ignite Updated Branches: refs/heads/ignite-4565-ddl fc2cf15fd -> 0721eb98f
Minors. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/0721eb98 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/0721eb98 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/0721eb98 Branch: refs/heads/ignite-4565-ddl Commit: 0721eb98f5c856afb8e4bbd3607c4d00492f8ff9 Parents: fc2cf15 Author: devozerov <[email protected]> Authored: Thu Mar 9 16:11:07 2017 +0300 Committer: devozerov <[email protected]> Committed: Thu Mar 9 16:11:07 2017 +0300 ---------------------------------------------------------------------- .../processors/query/GridQueryIndexHandler.java | 35 ++++++++++++++++++++ 1 file changed, 35 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/0721eb98/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryIndexHandler.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryIndexHandler.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryIndexHandler.java new file mode 100644 index 0000000..e996ac1 --- /dev/null +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryIndexHandler.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.ignite.internal.processors.query; + +/** + * Handler responsible for all index-related operations. + */ +public class GridQueryIndexHandler { + /** Query processor. */ + private final GridQueryProcessor qryProc; + + /** + * Constructor. + * + * @param qryProc Query processor. + */ + public GridQueryIndexHandler(GridQueryProcessor qryProc) { + this.qryProc = qryProc; + } +}
