mirror of https://github.com/apache/lucene.git
SOLR-13521: Fix input parameter handling for DynamicField and FieldTypes (Schema API)
This commit is contained in:
parent
757e4548c7
commit
f3148fa9e0
|
@ -132,6 +132,9 @@ Bug Fixes
|
||||||
|
|
||||||
* SOLR-12249: Better error message when grouping on a tokenized (non SortableText) field in SolrCloud (Erick Erickson)
|
* SOLR-12249: Better error message when grouping on a tokenized (non SortableText) field in SolrCloud (Erick Erickson)
|
||||||
|
|
||||||
|
* SOLR-13521: Fix input parameter handling in SchemaRequest.DynamicField and SchemaRequest.FieldTypes (Schema API)
|
||||||
|
(Tomás Fernández Löbbe)
|
||||||
|
|
||||||
Other Changes
|
Other Changes
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
|
@ -243,7 +243,7 @@ public class SchemaRequest extends AbstractSchemaRequest<SchemaResponse> {
|
||||||
}
|
}
|
||||||
|
|
||||||
public DynamicField(String dynamicFieldName, SolrParams q) {
|
public DynamicField(String dynamicFieldName, SolrParams q) {
|
||||||
super(METHOD.GET, "/schema/dynamicfields/" + dynamicFieldName);
|
super(METHOD.GET, "/schema/dynamicfields/" + dynamicFieldName, q);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -262,7 +262,7 @@ public class SchemaRequest extends AbstractSchemaRequest<SchemaResponse> {
|
||||||
}
|
}
|
||||||
|
|
||||||
public FieldTypes(SolrParams q) {
|
public FieldTypes(SolrParams q) {
|
||||||
super(METHOD.GET, "/schema/fieldtypes");
|
super(METHOD.GET, "/schema/fieldtypes", q);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue