snuyanzin commented on code in PR #26702:
URL: https://github.com/apache/flink/pull/26702#discussion_r2157546345


##########
flink-table/flink-table-planner/src/test/resources/org/apache/flink/table/planner/plan/stream/sql/MultiJoinTest.xml:
##########
@@ -16,12 +16,12 @@ See the License for the specific language governing 
permissions and
 limitations under the License.
 -->
 <Root>
-  <TestCase name="testFourWayComplexJoinExecPlan">
-    <Resource name="sql">
-      <![CDATA[SELECT u.user_id_0, u.name, o.order_id, p.payment_id, 
s.location FROM Users u LEFT JOIN Orders o ON u.user_id_0 = o.user_id_1 INNER 
JOIN Payments p ON u.user_id_0 = p.user_id_2 AND (u.cash >= p.price OR p.price 
< 0) LEFT JOIN Shipments s ON p.user_id_2 = s.user_id_3]]>
-    </Resource>
-    <Resource name="ast">
-      <![CDATA[
+       <TestCase name="testFourWayComplexJoinExecPlan">
+               <Resource name="sql">
+                       <![CDATA[SELECT u.user_id_0, u.name, o.order_id, 
p.payment_id, s.location FROM Users u LEFT JOIN Orders o ON u.user_id_0 = 
o.user_id_1 INNER JOIN Payments p ON u.user_id_0 = p.user_id_2 AND (u.cash >= 
p.price OR p.price < 0) LEFT JOIN Shipments s ON p.user_id_2 = s.user_id_3]]>

Review Comment:
   not related changes
   
   1. just drop this file
   2. rerun test (should work with maven, not sure about IDE)
   it will regenerate file with a proper format



-- 
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: issues-unsubscr...@flink.apache.org

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

Reply via email to