mirror of https://github.com/apache/lucene.git
LUCENE-3227: Adding support for Rewriteable to SortField.toString
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1138281 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f9ed2c19cd
commit
ee5de6d8e5
|
@ -356,6 +356,10 @@ public class SortField {
|
||||||
buffer.append("<custom:\"").append(field).append("\": ").append(comparatorSource).append('>');
|
buffer.append("<custom:\"").append(field).append("\": ").append(comparatorSource).append('>');
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case REWRITEABLE:
|
||||||
|
buffer.append("<rewriteable: \"").append(field).append("\">");
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
buffer.append("<???: \"").append(field).append("\">");
|
buffer.append("<???: \"").append(field).append("\">");
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue