[jira] [Resolved] (SOLR-2529) DIH update trouble with sql field name "pk"

2011-06-10 Thread Thomas Gambier (JIRA)

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

Thomas Gambier resolved SOLR-2529.
--

   Resolution: Fixed
Fix Version/s: 4.0

I've made some test on unreleased version 4.0 and it works well with a 
deltaQuery like :
"SELECT pk AS id FROM..."
Where "id" is the name of my primary key in DIH config.

TY

> DIH update trouble with sql field name "pk"
> ---
>
> Key: SOLR-2529
> URL: https://issues.apache.org/jira/browse/SOLR-2529
> Project: Solr
>  Issue Type: Bug
>  Components: contrib - DataImportHandler
>Affects Versions: 3.1, 3.2
> Environment: Debian Lenny, JRE 6
>Reporter: Thomas Gambier
>Priority: Blocker
> Fix For: 4.0
>
>
> We are unable to use the DIH when database columnName primary key is named 
> "pk".
> The reported solr error is :
> "deltaQuery has no column to resolve to declared primary key pk='pk'"
> We have made some investigations and found that the DIH have a mistake when 
> it's looking for the primary key between row's columns list.
> private String findMatchingPkColumn(String pk, Map row) {
> if (row.containsKey(pk))
>   throw new IllegalArgumentException(
> String.format("deltaQuery returned a row with null for primary key %s", 
> pk));
> String resolvedPk = null;
> for (String columnName : row.keySet()) {
>   if (columnName.endsWith("." + pk) || pk.endsWith("." + columnName)) {
> if (resolvedPk != null)
>   throw new IllegalArgumentException(
> String.format(
>   "deltaQuery has more than one column (%s and %s) that might resolve 
> to declared primary key pk='%s'",
>   resolvedPk, columnName, pk));
>   resolvedPk = columnName;
> }
>   }
>   if (resolvedPk == null)
> throw new IllegalArgumentException(
>   String.format("deltaQuery has no column to resolve to declared primary 
> key pk='%s'", pk));
>   LOG.info(String.format("Resolving deltaQuery column '%s' to match entity's 
> declared pk '%s'", resolvedPk, pk));
>   return resolvedPk;
> }

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Created] (SOLR-2529) DIH update trouble with sql field name "pk"

2011-05-19 Thread Thomas Gambier (JIRA)
DIH update trouble with sql field name "pk"
---

 Key: SOLR-2529
 URL: https://issues.apache.org/jira/browse/SOLR-2529
 Project: Solr
  Issue Type: Bug
  Components: contrib - DataImportHandler
Affects Versions: 3.1, 3.2
 Environment: Debian Lenny, JRE 6
Reporter: Thomas Gambier
Priority: Blocker


We are unable to use the DIH when database columnName primary key is named "pk".

The reported solr error is :
"deltaQuery has no column to resolve to declared primary key pk='pk'"

We have made some investigations and found that the DIH have a mistake when 
it's looking for the primary key between row's columns list.

private String findMatchingPkColumn(String pk, Map row) {
if (row.containsKey(pk))
  throw new IllegalArgumentException(
String.format("deltaQuery returned a row with null for primary key %s", 
pk));
String resolvedPk = null;
for (String columnName : row.keySet()) {
  if (columnName.endsWith("." + pk) || pk.endsWith("." + columnName)) {
if (resolvedPk != null)
  throw new IllegalArgumentException(
String.format(
  "deltaQuery has more than one column (%s and %s) that might resolve 
to declared primary key pk='%s'",
  resolvedPk, columnName, pk));
  resolvedPk = columnName;
}
  }
  if (resolvedPk == null)
throw new IllegalArgumentException(
  String.format("deltaQuery has no column to resolve to declared primary 
key pk='%s'", pk));
  LOG.info(String.format("Resolving deltaQuery column '%s' to match entity's 
declared pk '%s'", resolvedPk, pk));
  return resolvedPk;
}


--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Commented] (SOLR-2509) String index out of range: -1

2011-05-12 Thread Thomas Gambier (JIRA)

[ 
https://issues.apache.org/jira/browse/SOLR-2509?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13032320#comment-13032320
 ] 

Thomas Gambier commented on SOLR-2509:
--

More investigation :

I've located that spellchecker collate function is the trouble.

http://localhost:8983/solr/spell?q=cle_frbr%3A"LYSROUGE1149-73190"&spellcheck=true&spellcheck.collate=true
The query failed with the same error as above.

http://localhost:8983/solr/spell?q=cle_frbr%3A"LYSROUGE1149-73190"&spellcheck=true
This query works fine.


> String index out of range: -1
> -
>
> Key: SOLR-2509
> URL: https://issues.apache.org/jira/browse/SOLR-2509
> Project: Solr
>  Issue Type: Bug
>Affects Versions: 3.1
> Environment: Debian Lenny
> JAVA Version "1.6.0_20"
>Reporter: Thomas Gambier
>Priority: Blocker
>
> Hi,
> I'm a french user of SOLR and i've encountered a problem since i've installed 
> SOLR 3.1.
> I've got an error with this query : 
> cle_frbr:"LYSROUGE1149-73190"
> The error is :
> HTTP ERROR 500
> Problem accessing /solr/select. Reason:
> String index out of range: -1
> java.lang.StringIndexOutOfBoundsException: String index out of range: -1
>   at 
> java.lang.AbstractStringBuilder.replace(AbstractStringBuilder.java:797)
>   at java.lang.StringBuilder.replace(StringBuilder.java:271)
>   at 
> org.apache.solr.spelling.SpellCheckCollator.getCollation(SpellCheckCollator.java:131)
>   at 
> org.apache.solr.spelling.SpellCheckCollator.collate(SpellCheckCollator.java:69)
>   at 
> org.apache.solr.handler.component.SpellCheckComponent.addCollationsToResponse(SpellCheckComponent.java:179)
>   at 
> org.apache.solr.handler.component.SpellCheckComponent.process(SpellCheckComponent.java:157)
>   at 
> org.apache.solr.handler.component.SearchHandler.handleRequestBody(SearchHandler.java:194)
>   at 
> org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129)
>   at org.apache.solr.core.SolrCore.execute(SolrCore.java:1360)
>   at 
> org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:356)
>   at 
> org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:252)
>   at 
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212)
>   at 
> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:399)
>   at 
> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
>   at 
> org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
>   at 
> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766)
>   at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:450)
>   at 
> org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
>   at 
> org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
>   at 
> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
>   at org.mortbay.jetty.Server.handle(Server.java:326)
>   at 
> org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
>   at 
> org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:928)
>   at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:549)
>   at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212)
>   at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
>   at 
> org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:228)
>   at 
> org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)
> I've tested to escape the minus char and the query worked :
> cle_frbr:"LYSROUGE1149(BACKSLASH)-73190"
> But, strange fact, if i change one letter in my query it works :
> cle_frbr:"LASROUGE1149-73190"
> I've tested the same query on SOLR 1.4 and it works !
> Can someone test the query on next line on a 3.1 SOLR version and tell me if 
> he have the same problem ? 
> yourfield:"LYSROUGE1149-73190"
> Where do the problem come from ?
> Thank you by advance for your help.
> Tom

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org



[jira] [Updated] (SOLR-2509) String index out of range: -1

2011-05-11 Thread Thomas Gambier (JIRA)

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

Thomas Gambier updated SOLR-2509:
-

Description: 
Hi,

I'm a french user of SOLR and i've encountered a problem since i've installed 
SOLR 3.1.

I've got an error with this query : 
cle_frbr:"LYSROUGE1149-73190"

The error is :
HTTP ERROR 500

Problem accessing /solr/select. Reason:

String index out of range: -1

java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at 
java.lang.AbstractStringBuilder.replace(AbstractStringBuilder.java:797)
at java.lang.StringBuilder.replace(StringBuilder.java:271)
at 
org.apache.solr.spelling.SpellCheckCollator.getCollation(SpellCheckCollator.java:131)
at 
org.apache.solr.spelling.SpellCheckCollator.collate(SpellCheckCollator.java:69)
at 
org.apache.solr.handler.component.SpellCheckComponent.addCollationsToResponse(SpellCheckComponent.java:179)
at 
org.apache.solr.handler.component.SpellCheckComponent.process(SpellCheckComponent.java:157)
at 
org.apache.solr.handler.component.SearchHandler.handleRequestBody(SearchHandler.java:194)
at 
org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129)
at org.apache.solr.core.SolrCore.execute(SolrCore.java:1360)
at 
org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:356)
at 
org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:252)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212)
at 
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:399)
at 
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at 
org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at 
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:450)
at 
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at 
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at 
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at 
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
at 
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:928)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:549)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
at 
org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:228)
at 
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)


I've tested to escape the minus char and the query worked :
cle_frbr:"LYSROUGE1149(BACKSLASH)-73190"

But, strange fact, if i change one letter in my query it works :
cle_frbr:"LASROUGE1149-73190"


I've tested the same query on SOLR 1.4 and it works !

Can someone test the query on next line on a 3.1 SOLR version and tell me if he 
have the same problem ? 
yourfield:"LYSROUGE1149-73190"

Where do the problem come from ?

Thank you by advance for your help.

Tom

  was:
Hi,

I'm a french user of SOLR and i've encountered a problem since i've installed 
SOLR 3.1.

I've got an error with this query : 
cle_frbr:"LYSROUGE1149-73190"

The error is :
HTTP ERROR 500

Problem accessing /solr/select. Reason:

String index out of range: -1

java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at 
java.lang.AbstractStringBuilder.replace(AbstractStringBuilder.java:797)
at java.lang.StringBuilder.replace(StringBuilder.java:271)
at 
org.apache.solr.spelling.SpellCheckCollator.getCollation(SpellCheckCollator.java:131)
at 
org.apache.solr.spelling.SpellCheckCollator.collate(SpellCheckCollator.java:69)
at 
org.apache.solr.handler.component.SpellCheckComponent.addCollationsToResponse(SpellCheckComponent.java:179)
at 
org.apache.solr.handler.component.SpellCheckComponent.process(SpellCheckComponent.java:157)
at 
org.apache.solr.handler.component.SearchHandler.handleRequestBody(SearchHandler.java:194)
at 
org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129)
at org.apache.solr.core.SolrCore.execute(SolrCore.java:1360)
at 
org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:356)
at 
org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:252)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212)
at 
org.mortbay.jetty.s

[jira] [Updated] (SOLR-2509) String index out of range: -1

2011-05-11 Thread Thomas Gambier (JIRA)

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

Thomas Gambier updated SOLR-2509:
-

Description: 
Hi,

I'm a french user of SOLR and i've encountered a problem since i've installed 
SOLR 3.1.

I've got an error with this query : 
cle_frbr:"LYSROUGE1149-73190"

The error is :
HTTP ERROR 500

Problem accessing /solr/select. Reason:

String index out of range: -1

java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at 
java.lang.AbstractStringBuilder.replace(AbstractStringBuilder.java:797)
at java.lang.StringBuilder.replace(StringBuilder.java:271)
at 
org.apache.solr.spelling.SpellCheckCollator.getCollation(SpellCheckCollator.java:131)
at 
org.apache.solr.spelling.SpellCheckCollator.collate(SpellCheckCollator.java:69)
at 
org.apache.solr.handler.component.SpellCheckComponent.addCollationsToResponse(SpellCheckComponent.java:179)
at 
org.apache.solr.handler.component.SpellCheckComponent.process(SpellCheckComponent.java:157)
at 
org.apache.solr.handler.component.SearchHandler.handleRequestBody(SearchHandler.java:194)
at 
org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129)
at org.apache.solr.core.SolrCore.execute(SolrCore.java:1360)
at 
org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:356)
at 
org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:252)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212)
at 
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:399)
at 
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at 
org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at 
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:450)
at 
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at 
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at 
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at 
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
at 
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:928)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:549)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
at 
org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:228)
at 
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)


I've tested to escape the minus char and the query worked :
cle_frbr:"LYSROUGE1149\-73190"

But, strange fact, if i change one letter in my query it works :
cle_frbr:"LASROUGE1149-73190"


I've tested the same query on SOLR 1.4 and it works !

Can someone test the query on next line on a 3.1 SOLR version and tell me if he 
have the same problem ? 
yourfield:"LYSROUGE1149-73190"

Where do the problem come from ?

Thank you by advance for your help.

Tom

  was:
Hi,

I'm a french user of SOLR and i've encountered a problem since i've installed 
SOLR 3.1.

I've got an error with this query : 
cle_frbr:"LYSROUGE1149-73190"

The error is :
HTTP ERROR 500

Problem accessing /solr/select. Reason:

String index out of range: -1

java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at 
java.lang.AbstractStringBuilder.replace(AbstractStringBuilder.java:797)
at java.lang.StringBuilder.replace(StringBuilder.java:271)
at 
org.apache.solr.spelling.SpellCheckCollator.getCollation(SpellCheckCollator.java:131)
at 
org.apache.solr.spelling.SpellCheckCollator.collate(SpellCheckCollator.java:69)
at 
org.apache.solr.handler.component.SpellCheckComponent.addCollationsToResponse(SpellCheckComponent.java:179)
at 
org.apache.solr.handler.component.SpellCheckComponent.process(SpellCheckComponent.java:157)
at 
org.apache.solr.handler.component.SearchHandler.handleRequestBody(SearchHandler.java:194)
at 
org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129)
at org.apache.solr.core.SolrCore.execute(SolrCore.java:1360)
at 
org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:356)
at 
org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:252)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212)
at 
org.mortbay.jetty.servlet.Ser

[jira] [Updated] (SOLR-2509) String index out of range: -1

2011-05-11 Thread Thomas Gambier (JIRA)

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

Thomas Gambier updated SOLR-2509:
-

Description: 
Hi,

I'm a french user of SOLR and i've encountered a problem since i've installed 
SOLR 3.1.

I've got an error with this query : 
cle_frbr:"LYSROUGE1149-73190"

The error is :
HTTP ERROR 500

Problem accessing /solr/select. Reason:

String index out of range: -1

java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at 
java.lang.AbstractStringBuilder.replace(AbstractStringBuilder.java:797)
at java.lang.StringBuilder.replace(StringBuilder.java:271)
at 
org.apache.solr.spelling.SpellCheckCollator.getCollation(SpellCheckCollator.java:131)
at 
org.apache.solr.spelling.SpellCheckCollator.collate(SpellCheckCollator.java:69)
at 
org.apache.solr.handler.component.SpellCheckComponent.addCollationsToResponse(SpellCheckComponent.java:179)
at 
org.apache.solr.handler.component.SpellCheckComponent.process(SpellCheckComponent.java:157)
at 
org.apache.solr.handler.component.SearchHandler.handleRequestBody(SearchHandler.java:194)
at 
org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129)
at org.apache.solr.core.SolrCore.execute(SolrCore.java:1360)
at 
org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:356)
at 
org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:252)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212)
at 
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:399)
at 
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at 
org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at 
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:450)
at 
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at 
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at 
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at 
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
at 
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:928)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:549)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
at 
org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:228)
at 
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)


I've tested to escape the minus char and the query worked :
cle_frbr:"LYSROUGE1149\\-73190"

But, strange fact, if i change one letter in my query it works :
cle_frbr:"LASROUGE1149-73190"


I've tested the same query on SOLR 1.4 and it works !

Can someone test the query on next line on a 3.1 SOLR version and tell me if he 
have the same problem ? 
yourfield:"LYSROUGE1149-73190"

Where do the problem come from ?

Thank you by advance for your help.

Tom

  was:
Hi,

I'm a french user of SOLR and i've encountered a problem since i've installed 
SOLR 3.1.

I've got an error with this query : 
cle_frbr:"LYSROUGE1149-73190"

The error is :
HTTP ERROR 500

Problem accessing /solr/select. Reason:

String index out of range: -1

java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at 
java.lang.AbstractStringBuilder.replace(AbstractStringBuilder.java:797)
at java.lang.StringBuilder.replace(StringBuilder.java:271)
at 
org.apache.solr.spelling.SpellCheckCollator.getCollation(SpellCheckCollator.java:131)
at 
org.apache.solr.spelling.SpellCheckCollator.collate(SpellCheckCollator.java:69)
at 
org.apache.solr.handler.component.SpellCheckComponent.addCollationsToResponse(SpellCheckComponent.java:179)
at 
org.apache.solr.handler.component.SpellCheckComponent.process(SpellCheckComponent.java:157)
at 
org.apache.solr.handler.component.SearchHandler.handleRequestBody(SearchHandler.java:194)
at 
org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129)
at org.apache.solr.core.SolrCore.execute(SolrCore.java:1360)
at 
org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:356)
at 
org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:252)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212)
at 
org.mortbay.jetty.servlet.Se

[jira] [Created] (SOLR-2509) String index out of range: -1

2011-05-11 Thread Thomas Gambier (JIRA)
String index out of range: -1
-

 Key: SOLR-2509
 URL: https://issues.apache.org/jira/browse/SOLR-2509
 Project: Solr
  Issue Type: Bug
Affects Versions: 3.1
 Environment: Debian Lenny
JAVA Version "1.6.0_20"

Reporter: Thomas Gambier
Priority: Blocker


Hi,

I'm a french user of SOLR and i've encountered a problem since i've installed 
SOLR 3.1.

I've got an error with this query : 
cle_frbr:"LYSROUGE1149-73190"

The error is :
HTTP ERROR 500

Problem accessing /solr/select. Reason:

String index out of range: -1

java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at 
java.lang.AbstractStringBuilder.replace(AbstractStringBuilder.java:797)
at java.lang.StringBuilder.replace(StringBuilder.java:271)
at 
org.apache.solr.spelling.SpellCheckCollator.getCollation(SpellCheckCollator.java:131)
at 
org.apache.solr.spelling.SpellCheckCollator.collate(SpellCheckCollator.java:69)
at 
org.apache.solr.handler.component.SpellCheckComponent.addCollationsToResponse(SpellCheckComponent.java:179)
at 
org.apache.solr.handler.component.SpellCheckComponent.process(SpellCheckComponent.java:157)
at 
org.apache.solr.handler.component.SearchHandler.handleRequestBody(SearchHandler.java:194)
at 
org.apache.solr.handler.RequestHandlerBase.handleRequest(RequestHandlerBase.java:129)
at org.apache.solr.core.SolrCore.execute(SolrCore.java:1360)
at 
org.apache.solr.servlet.SolrDispatchFilter.execute(SolrDispatchFilter.java:356)
at 
org.apache.solr.servlet.SolrDispatchFilter.doFilter(SolrDispatchFilter.java:252)
at 
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1212)
at 
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:399)
at 
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at 
org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at 
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:450)
at 
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at 
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at 
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at 
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
at 
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:928)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:549)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
at 
org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:228)
at 
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)


I've tested to escape the minus char and the query worked :
cle_frbr:"LYSROUGE1149\-73190"

But, strange fact, if i change one letter in my query it works :
cle_frbr:"LASROUGE1149-73190"


I've tested the same query on SOLR 1.4 and it works !

Can someone test the query on next line on a 3.1 SOLR version and tell me if he 
have the same problem ? 
yourfield:"LYSROUGE1149-73190"

Where do the problem come from ?

Thank you by advance for your help.

Tom

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org