Skip to content

Commit

Permalink
merge with develop + improvement in faceting
Browse files Browse the repository at this point in the history
  • Loading branch information
wolf4ood committed Apr 21, 2015
1 parent 73a3941 commit c4df999
Show file tree
Hide file tree
Showing 17 changed files with 735 additions and 672 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -22,7 +22,7 @@

<groupId>com.orientechnologies</groupId>
<artifactId>orientdb-lucene</artifactId>
<version>2.0.5</version>
<version>2.1-rc2</version>
<packaging>jar</packaging>

<name>lucene</name>
Expand Down Expand Up @@ -97,7 +97,7 @@
<surefire.version>2.17</surefire.version>
<javac.src.version>1.6</javac.src.version>
<javac.target.version>1.6</javac.target.version>
<orientdb.version>2.0.5-SNAPSHOT</orientdb.version>
<orientdb.version>2.1-SNAPSHOT</orientdb.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down
Expand Up @@ -177,6 +177,11 @@ public boolean hasRangeQuerySupport() {
return lucene.hasRangeQuerySupport();
}

@Override
public int getVersion() {
return 0;
}

public void setManagedIndex(OIndex index) {
this.indexManaged = index;
}
Expand Down
Expand Up @@ -55,6 +55,11 @@ public class OLuceneIndexFactory implements OIndexFactory {
public OLuceneIndexFactory() {
}

@Override
public int getLastVersion() {
return 0;
}

@Override
public Set<String> getTypes() {
return TYPES;
Expand Down

0 comments on commit c4df999

Please sign in to comment.