Skip to content
Snippets Groups Projects
Commit 23413dbe authored by Neelesh Thakur's avatar Neelesh Thakur
Browse files

force commit fix for compliation errors

parent dd4fbc8f
No related branches found
No related tags found
1 merge request!89enable keyword & null indexing support for text type
Checking pipeline status
......@@ -76,7 +76,7 @@ public class IndexerMappingServiceImpl extends MappingServiceImpl implements Ind
*
* @param schema Index schema
* @param type Mapping type
* @return String JSON represnetation of type and elastic type
* @return String JSON representation of type and elastic type
*
* sample index mapping:
* "properties": {
......@@ -182,7 +182,8 @@ public class IndexerMappingServiceImpl extends MappingServiceImpl implements Ind
}
}
private boolean updateMappingForAllIndicesOfSameTypeToEnableKeywordIndexingForField(RestHighLevelClient client, String index, Map<String, Map<String, GetFieldMappingsResponse.FieldMappingMetadata>> indexMapping, String fieldName) throws IOException {
private boolean updateMappingForAllIndicesOfSameTypeToEnableKeywordIndexingForField(
RestHighLevelClient client, String index, Map<String, Map<String, GetFieldMappingsResponse.FieldMappingMetadata>> indexMapping, String fieldName) throws IOException {
PutMappingRequest request = new PutMappingRequest(index);
String type = indexMapping.keySet().iterator().next();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment