mirror of https://github.com/apache/lucene.git
SOLR-5663: example-DIH uses non-existing column for mapping (case-sensitive)
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1561026 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a9670cc6e7
commit
22d2bb44b3
|
@ -222,6 +222,9 @@ Bug Fixes
|
||||||
* SOLR-5657: When a SolrCore starts on HDFS, it should gracefully handle HDFS
|
* SOLR-5657: When a SolrCore starts on HDFS, it should gracefully handle HDFS
|
||||||
being in safe mode. (Mark Miller)
|
being in safe mode. (Mark Miller)
|
||||||
|
|
||||||
|
* SOLR-5663: example-DIH uses non-existing column for mapping (case-sensitive)
|
||||||
|
(steffkes)
|
||||||
|
|
||||||
Optimizations
|
Optimizations
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
query="select DESCRIPTION from category where ID = '${item_category.CATEGORY_ID}'"
|
query="select DESCRIPTION from category where ID = '${item_category.CATEGORY_ID}'"
|
||||||
deltaQuery="select ID from category where last_modified > '${dataimporter.last_index_time}'"
|
deltaQuery="select ID from category where last_modified > '${dataimporter.last_index_time}'"
|
||||||
parentDeltaQuery="select ITEM_ID, CATEGORY_ID from item_category where CATEGORY_ID=${category.ID}">
|
parentDeltaQuery="select ITEM_ID, CATEGORY_ID from item_category where CATEGORY_ID=${category.ID}">
|
||||||
<field column="description" name="cat" />
|
<field column="DESCRIPTION" name="cat" />
|
||||||
</entity>
|
</entity>
|
||||||
</entity>
|
</entity>
|
||||||
</entity>
|
</entity>
|
||||||
|
|
Loading…
Reference in New Issue