エスケープされた括弧による構文エラー

トピック作成者:ks-solruserml-bot (2024/12/28 18:15 投稿)
5
(The bot translated the original post https://lists.apache.org/thread/5pqg6zo6xxcbob5nczj99z4600fqjd4d into Japanese and reposted it under Apache License 2.0. The copyright of posted content is held by the original poster.)
こんにちは、
以下のクエリで潜在的に誤った字句エラーが発生しました:
- 検索語に括弧が含まれている(エスケープと引用両方を試しました)
- クエリパーサーが
{}
内にある。実際のユースケースは!graph
を使用していますが、簡単な!boost
で再現可能です。 {!something ...}
クエリの前に AND を使用しています。
このクエリは失敗します:
curl 'http://localhost:8983/solr/demo/select?q=inStock:true+AND+%7B%21boost+b%3Dmanufacturedate_dt%7Dname%3Athe%2520%5C%28concept%5C%29.xml'
{
"responseHeader":{
"status":400,
"QTime":1,
"params":{
"q":"inStock:true AND {!boost b=manufacturedate_dt}name:the%20\(concept\).xml"
}
},
"error":{
"metadata":["error-class","org.apache.solr.common.SolrException","root-error-class","org.apache.solr.parser.TokenMgrError"],
"msg":"org.apache.solr.search.SyntaxError: Cannot parse 'name:the%20\(concept\': Lexical error at line 1, column 22. Encountered: <EOF> (in lexical state 3)",
"code":400
}
}
引用した場合(エスケープは必要ないか?):
curl 'http://localhost:8983/solr/demo/select?q=inStock:true+AND+%7B%21boost+b%3Dmanufacturedate_dt%7Dname%3A%22the%2520%28concept%29.xml%22'
{
"responseHeader":{
"status":400,
"QTime":1,
"params":{
"q":"inStock:true AND {!boost b=manufacturedate_dt}name:"the%20(concept).xml""
}
},
"error":{
"metadata":["error-class","org.apache.solr.common.SolrException","root-error-class","org.apache.solr.parser.TokenMgrError"],
"msg":"org.apache.solr.search.SyntaxError: Cannot parse 'name:"the%20(concept': Lexical error at line 1, column 21. Encountered: <EOF> after prefix "\"the%20(concept" (in lexical state 3)",
"code":400
}
}
閉じ括弧を削除すると動作します:
curl 'http://localhost:8983/solr/demo/select?q=inStock:true+AND+%7B%21boost+b%3Dmanufacturedate_dt%7Dname%3Athe%2520%5C%28concept.xml'
前のステートメントを削除すると動作します:
curl 'http://localhost:8983/solr/demo/select?q=%7B%21boost+b%3Dmanufacturedate_dt%7Dname%3Athe%2520%5C%28concept%5C%29.xml'
この問題を見たことがある方はいらっしゃいますか? 8.3 および 9.6.1 でテストしました。
よろしくお願いします、
Thomas Å
トピックへ返信するには、ログインが必要です。