mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
Add missing IgnoreCaseUnsupportedException to the lucene modules
This commit is contained in:
parent
165240aeeb
commit
9076dcaa68
@ -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) {
|
||||
|
||||
@ -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) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user