This is an automated email from the ASF dual-hosted git repository.

lakshsingla pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new eb797512a0 Fix MSQSelectTest. (#14099)
eb797512a0 is described below

commit eb797512a02777d0b48ef0911223af4469c34b5e
Author: Gian Merlino <[email protected]>
AuthorDate: Sun Apr 16 12:45:38 2023 -0700

    Fix MSQSelectTest. (#14099)
    
    A logical conflict between #14046 and #14048 caused testJoinWithLookup
    to fail. This patch fixes it.
---
 .../src/test/java/org/apache/druid/msq/exec/MSQSelectTest.java          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/extensions-core/multi-stage-query/src/test/java/org/apache/druid/msq/exec/MSQSelectTest.java
 
b/extensions-core/multi-stage-query/src/test/java/org/apache/druid/msq/exec/MSQSelectTest.java
index 3ee7eab9a4..3ecb709d73 100644
--- 
a/extensions-core/multi-stage-query/src/test/java/org/apache/druid/msq/exec/MSQSelectTest.java
+++ 
b/extensions-core/multi-stage-query/src/test/java/org/apache/druid/msq/exec/MSQSelectTest.java
@@ -655,7 +655,7 @@ public class MSQSelectTest extends MSQTestBase
         .setExpectedRowSignature(rowSignature)
         .setExpectedResultRows(
             ImmutableList.of(
-                new Object[]{null, 3L},
+                new Object[]{NullHandling.defaultStringValue(), 3L},
                 new Object[]{"xabc", 1L}
             )
         )


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

Reply via email to