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:
Noble Paul 2009-08-03 05:51:59 +00:00
parent 6738cfbe6e
commit b0094a2ef8
1 changed files with 1 additions and 0 deletions

View File

@ -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);
}