mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
SEARCH-456: Putting quotes around an interval filter query
This commit is contained in:
@@ -116,8 +116,9 @@ public class IntervalSet
|
||||
{
|
||||
StringBuilder sb = new StringBuilder("");
|
||||
sb.append(startInclusive?"[":"<")
|
||||
.append(start)
|
||||
.append(" TO "+end)
|
||||
.append("\"").append(start).append("\"")
|
||||
.append(" TO ")
|
||||
.append("\"").append(end).append("\"")
|
||||
.append(endInclusive?"]":">");
|
||||
return sb.toString();
|
||||
}
|
||||
|
Reference in New Issue
Block a user