yiguolei commented on code in PR #32649:
URL: https://github.com/apache/doris/pull/32649#discussion_r1534980837


##########
regression-test/suites/nereids_p0/join/test_runtimefilter_on_datev2.groovy:
##########
@@ -221,4 +221,34 @@ suite("test_runtimefilter_on_datev2", "nereids_p0") {
     qt_join1 """
         SELECT * FROM ${dateTable} a, ${dateV2Table} b WHERE a.date = b.date;
     """
+
+    // bug fix
+    sql "drop table if exists rftest_l";
+    sql "drop table if exists rftest_r";
+    sql """
+        CREATE TABLE `rftest_l` (
+          `k1_date` DATEV2
+        )
+        DISTRIBUTED BY HASH(`k1_date`)
+        PROPERTIES (
+        "replication_allocation" = "tag.location.default: 1"
+        );
+    """
+    sql """
+        CREATE TABLE `rftest_r` (
+          `k1_char` varchar(64)

Review Comment:
   rftest_r  (string) ---> build hash table (datetimev2(0))  ---> min max 
(9999-12-31 23:59:59:999999) ---> 
   
   consumer: liternal (9999-12-31 23:59:59:999999) (datetimev2(0))



-- 
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