mirror of https://github.com/apache/lucene.git
log warning if deltaImportQuery is not specified . Eventually when the feature is deprecated it should throw an exception
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@800204 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6738cfbe6e
commit
b0094a2ef8
|
@ -114,6 +114,7 @@ public class SqlEntityProcessor extends EntityProcessorBase {
|
|||
String deltaImportQuery = context.getEntityAttribute(DELTA_IMPORT_QUERY);
|
||||
if(deltaImportQuery != null) return deltaImportQuery;
|
||||
}
|
||||
LOG.warn("'deltaImportQuery' attribute is not specified for entity : "+ entityName);
|
||||
return getDeltaImportQuery(queryString);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue