You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-dev@lucene.apache.org by "Yonik Seeley (JIRA)" <ji...@apache.org> on 2009/08/06 04:15:14 UTC

[jira] Resolved: (SOLR-1341) Trie* fields don't work in Analysis.jsp

     [ https://issues.apache.org/jira/browse/SOLR-1341?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Yonik Seeley resolved SOLR-1341.
--------------------------------

    Resolution: Fixed

Found it and committed - there was a bug in analysis.jsp that created the tokenstream again:

{code}
Index: src/webapp/web/admin/analysis.jsp
===================================================================
--- src/webapp/web/admin/analysis.jsp   (revision 801477)
+++ src/webapp/web/admin/analysis.jsp   (working copy)
@@ -199,7 +199,6 @@
        reader.reset();
        TokenStream tstream = tfac.create(reader);
        List<Token> tokens = getTokens(tstream);
-       tstream = tfac.create(reader);
        if (verbose) {
          writeHeader(out, tfac.getClass(), tfac.getArgs());
        }
{code}

> Trie* fields don't work in Analysis.jsp
> ---------------------------------------
>
>                 Key: SOLR-1341
>                 URL: https://issues.apache.org/jira/browse/SOLR-1341
>             Project: Solr
>          Issue Type: Bug
>    Affects Versions: 1.4
>            Reporter: Yonik Seeley
>             Fix For: 1.4
>
>
> trie fields don't seem to work in the admin analysis page

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.