Add missing IgnoreCaseUnsupportedException to the lucene modules

This commit is contained in:
Ruben Dijkstra 2015-12-15 19:40:45 +01:00
parent 165240aeeb
commit 9076dcaa68
2 changed files with 4 additions and 0 deletions

View File

@ -82,6 +82,8 @@ public class LuceneSerializer {
return bq;
} else if (op == Ops.LIKE) {
return like(operation, metadata);
} else if (op == Ops.LIKE_IC) {
throw new IgnoreCaseUnsupportedException();
} else if (op == Ops.EQ) {
return eq(operation, metadata, false);
} else if (op == Ops.EQ_IGNORE_CASE) {

View File

@ -83,6 +83,8 @@ public class LuceneSerializer {
return bq;
} else if (op == Ops.LIKE) {
return like(operation, metadata);
} else if (op == Ops.LIKE_IC) {
throw new IgnoreCaseUnsupportedException();
} else if (op == Ops.EQ) {
return eq(operation, metadata, false);
} else if (op == Ops.EQ_IGNORE_CASE) {