You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2016/03/02 23:25:17 UTC

incubator-geode git commit: GEODE-991: Marking LuceneFunction as in InternalEntity

Repository: incubator-geode
Updated Branches:
  refs/heads/develop e1a0830e2 -> 0ca2f2ea1


GEODE-991: Marking LuceneFunction as in InternalEntity

This prevents LuceneFunction from showing up in the list functions
command in gfsh.


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/0ca2f2ea
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/0ca2f2ea
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/0ca2f2ea

Branch: refs/heads/develop
Commit: 0ca2f2ea16d09b67b3b7b3c723b0f02e35b577b3
Parents: e1a0830
Author: Dan Smith <up...@apache.org>
Authored: Wed Mar 2 14:12:52 2016 -0800
Committer: Dan Smith <up...@apache.org>
Committed: Wed Mar 2 14:21:08 2016 -0800

----------------------------------------------------------------------
 .../gemfire/cache/lucene/internal/distributed/LuceneFunction.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/0ca2f2ea/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java
----------------------------------------------------------------------
diff --git a/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java b/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java
index c3b79c5..199b698 100644
--- a/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java
+++ b/geode-lucene/src/main/java/com/gemstone/gemfire/cache/lucene/internal/distributed/LuceneFunction.java
@@ -39,6 +39,7 @@ import com.gemstone.gemfire.cache.lucene.internal.repository.IndexRepository;
 import com.gemstone.gemfire.cache.lucene.internal.repository.IndexResultCollector;
 import com.gemstone.gemfire.cache.lucene.internal.repository.RepositoryManager;
 import com.gemstone.gemfire.cache.query.QueryException;
+import com.gemstone.gemfire.internal.InternalEntity;
 import com.gemstone.gemfire.internal.cache.BucketNotFoundException;
 import com.gemstone.gemfire.internal.logging.LogService;
 
@@ -47,7 +48,7 @@ import com.gemstone.gemfire.internal.logging.LogService;
  * and arguments like region and buckets. It invokes search on the local index and provides a result collector. The
  * locally collected results are sent to the search coordinator.
  */
-public class LuceneFunction extends FunctionAdapter {
+public class LuceneFunction extends FunctionAdapter implements InternalEntity {
   private static final long serialVersionUID = 1L;
   public static final String ID = LuceneFunction.class.getName();