Mryange commented on issue #32848:
URL: https://github.com/apache/doris/issues/32848#issuecomment-2024304225

   > > The subsequent version has been fixed.
   > > ```
   > > mysql [test]>CREATE table tbl (c1 varchar(31), c2 varchar(10)) 
ENGINE=OLAP DUPLICATE KEY( c1 ) COMMENT "OLAP"  DISTRIBUTED BY HASH( c1 ) 
BUCKETS  auto PROPERTIES ( "replication_num" = "1"  );
   > > ct 'ab', 'abc';
   > > mysql [test]>insert into tbl select 'ab', 'abc';
   > > mysql [test]>SELECT c2 LIKE 'ab' FROM ( SELECT c2  FROM tbl EXCEPT  
SELECT 'ab' c2 ) AS t1;
   > > +----------------+
   > > | (c2 like 'ab') |
   > > +----------------+
   > > |              0 |
   > > +----------------+
   > > ```
   > 
   > I tested it on 3/26(yesterday) 2.0 branch, and I found it. Can you tell me 
the exact version number, or which pull request fixed this issue? ty
   
   This PR https://github.com/apache/doris/pull/26673 fixed the issue where the 
VEXCEPT operator would improperly execute the expr if open was not correct in 
the past. This PR includes relevant checks and fixes the errors. It has been 
merged into version 2.1 but has not yet been merged into version 2.0.
   I'll try to pick that into 2.0 today.


-- 
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: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to