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

   ### 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
   
   1.2.0
   
   ### What's Wrong?
   
   I create a table as follow
   
   CREATE TABLE `ddd` ( 
   `name`  varchar(30) NOT NULL, 
   `name2` varchar(30) NOT NULL, 
   `date`       date NOT NULL,
   `value` bigint(20) NULL 
   ) ENGINE=OLAP 
   DUPLICATE KEY(`name`, `name2`, `date`) 
   DISTRIBUTED BY HASH(`date`) buckets 5
   PROPERTIES ( 
        "data_sort.sort_type" = "ZORDER", 
        "data_sort.col_num" = "2"
   );
   
   The insert a record as
   INSERT INTO `ddd` (`name`,`name2`,`date`,`value`) values('n1', 'n2', 
'2023-03-07', 123)
   
   Use select * to query, Doris return the expected record.
   
![image](https://user-images.githubusercontent.com/6435193/223314033-dfb14bb2-0cf8-4d08-aaa4-51a23b681e44.png)
   
   Add filter where name = 'adfadfasdf', Doris return the wrong result looks 
like filter not work, please help to check what's wrong with my operation.
   
![image](https://user-images.githubusercontent.com/6435193/223314171-7e56bb60-6a60-4b58-916b-8ed1c0d8fad6.png)
   
   
   ### What You Expected?
   
   I hope to know whether a bug or my incorrect operation
   
   ### How to Reproduce?
   
   _No response_
   
   ### 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