Package com.yahoo.schema.processing
Class ValidateFieldTypes
java.lang.Object
com.yahoo.schema.processing.Processor
com.yahoo.schema.processing.ValidateFieldTypes
- Direct Known Subclasses:
ValidateFieldTypesDocumentsOnly
This Processor makes sure all fields with the same name have the same
DataType. This check
explicitly disregards whether a field is an index field, an attribute or a summary field. This is a requirement if we
hope to move to a model where index fields, attributes and summary fields share a common field class.- Author:
- Simon Thoresen Hult
-
Field Summary
Fields inherited from class com.yahoo.schema.processing.Processor
deployLogger, queryProfiles, rankProfileRegistry, schema -
Constructor Summary
ConstructorsConstructorDescriptionValidateFieldTypes(Schema schema, com.yahoo.config.application.api.DeployLogger deployLogger, RankProfileRegistry rankProfileRegistry, QueryProfiles queryProfiles) -
Method Summary
Modifier and TypeMethodDescriptionvoidprocess(boolean validate, boolean documentsOnly) Processes the input search definition by modifying the input search and its documents, and returns the input search definition.protected final voidverifySearchAndDocFields(String searchName, Map<String, com.yahoo.document.DataType> seenFields) protected final voidverifySummaryFields(String searchName, Map<String, com.yahoo.document.DataType> seenFields) Methods inherited from class com.yahoo.schema.processing.Processor
addField, fail, formatError, info, info, matchingRankSettingsIterator, newProcessException, newProcessException, process, warn, warn
-
Constructor Details
-
ValidateFieldTypes
public ValidateFieldTypes(Schema schema, com.yahoo.config.application.api.DeployLogger deployLogger, RankProfileRegistry rankProfileRegistry, QueryProfiles queryProfiles)
-
-
Method Details
-
process
public void process(boolean validate, boolean documentsOnly) Description copied from class:ProcessorProcesses the input search definition by modifying the input search and its documents, and returns the input search definition.- Specified by:
processin classProcessor- Parameters:
validate- true to throw exceptions on validation errors, false to make the best possible effort at completing processing without throwing an exception. If we are not validating, emitting warnings have no effect and can (but must not) be skipped.documentsOnly- true to skip processing (including validation, regardless of the validate setting) of aspects not relating to document definitions (e.g rank profiles)
-
verifySearchAndDocFields
-
verifySummaryFields
-