zhuzhihao94 opened a new issue, #21299:
URL: https://github.com/apache/doris/issues/21299

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no 
similar issues.
   
   
   ### Version
   
   doris-2.0.0-alpha1
   
   ### What's Wrong?
   
   MATCH_PHRASE query failed
   
   ### What You Expected?
   
   MATCH_PHRASE query ok
   
   ### How to Reproduce?
   
   1. create table
   CREATE TABLE hackernews_5
   (
       `id` BIGINT,
       `msg` String,
       `agent_ip` String,
       INDEX idx_agent_ip (`agent_ip`) USING INVERTED PROPERTIES("parser" = 
"chinese", "parser_mode" = "fine_grained", "support_phrase" = "true") COMMENT 
'inverted index for comment'
   )
   DUPLICATE KEY(`id`)
   DISTRIBUTED BY HASH(`id`) BUCKETS 1
   PROPERTIES ("replication_num" = "1");
   
   2. write record
   insert into hackernews_5 values 
(1,'hello','C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\ngentask.exe');
   
   3.query sql
   select * from hackernews_5 where agent_ip MATCH_PHRASE 'ngentask exe';
   
   4. error reponse
   [HY000][1105] errCode = 2, detailMessage = 
(10.106.40.81)[INTERNAL_ERROR]failed to initialize storage reader. 
tablet=38468.1719095337.d64e80c20e11f3a2-768709744c2baca5, res=[E-6001], 
backend=10.106.40.81
   
   
![image](https://github.com/apache/doris/assets/102282433/50b47436-8b1c-4f8c-8148-d481a9d6a806)
   
   
   
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to