61yao commented on code in PR #9895:
URL: https://github.com/apache/pinot/pull/9895#discussion_r1044035634


##########
pinot-query-runtime/src/test/resources/queries/FromExpressions.json:
##########
@@ -57,9 +57,14 @@
       },
       {
         "psql": "7.2.1.1",
-        "ignored": true,
+        "comments": "select all doesn't work because h2 output the rows in 
different order from Pinot and test framework doesn't consider the column order 
for rows and blindly assume they are in the same order",
         "description": "RIGHT OUTER JOIN",
-        "sql": "SELECT * FROM {tbl1} RIGHT OUTER JOIN {tbl2} ON {tbl1}.col1 = 
{tbl2}.col1"
+        "sql": "SELECT {tbl1}.num, {tbl1}.name, {tbl2}.num, {tbl2}.value FROM 
{tbl1} RIGHT OUTER JOIN {tbl2} ON {tbl1}.num = {tbl2}.num"

Review Comment:
   Addressed in the other PR.
   Nice test and caught a bug.
   Unfortunately,  the inequality join sometimes doesn't work because we don't 
handle the null value. This is not a regression because left join has the same 
problem. :( 



-- 
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...@pinot.apache.org

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


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

Reply via email to