twalthr commented on code in PR #26687: URL: https://github.com/apache/flink/pull/26687#discussion_r2154500186
########## flink-table/flink-table-planner/src/test/resources/restore-tests/stream-exec-multi-join_1/three-way-inner-join-with-restore/plan/three-way-inner-join-with-restore.json: ########## @@ -0,0 +1,273 @@ +{ + "flinkVersion" : "2.1", + "nodes" : [ { + "id" : 1, + "type" : "stream-exec-table-source-scan_1", + "scanTableSource" : { + "table" : { + "identifier" : "`default_catalog`.`default_database`.`Users`", + "resolvedTable" : { + "schema" : { + "columns" : [ { + "name" : "user_id", + "dataType" : "VARCHAR(2147483647)" + }, { + "name" : "name", + "dataType" : "VARCHAR(2147483647)" + } ], + "watermarkSpecs" : [ ] + }, + "partitionKeys" : [ ] + } + } + }, + "outputType" : "ROW<`user_id` VARCHAR(2147483647), `name` VARCHAR(2147483647)>", + "description" : "TableSourceScan(table=[[default_catalog, default_database, Users]], fields=[user_id, name])", + "inputProperties" : [ ] + }, { + "id" : 2, + "type" : "stream-exec-table-source-scan_1", + "scanTableSource" : { + "table" : { + "identifier" : "`default_catalog`.`default_database`.`Orders`", + "resolvedTable" : { + "schema" : { + "columns" : [ { + "name" : "user_id", + "dataType" : "VARCHAR(2147483647)" + }, { + "name" : "order_id", + "dataType" : "VARCHAR(2147483647)" + } ], + "watermarkSpecs" : [ ] + }, + "partitionKeys" : [ ] + } + } + }, + "outputType" : "ROW<`user_id` VARCHAR(2147483647), `order_id` VARCHAR(2147483647)>", + "description" : "TableSourceScan(table=[[default_catalog, default_database, Orders]], fields=[user_id, order_id])", + "inputProperties" : [ ] + }, { + "id" : 3, + "type" : "stream-exec-table-source-scan_1", + "scanTableSource" : { + "table" : { + "identifier" : "`default_catalog`.`default_database`.`Payments`", + "resolvedTable" : { + "schema" : { + "columns" : [ { + "name" : "user_id", + "dataType" : "VARCHAR(2147483647)" + }, { + "name" : "payment_id", + "dataType" : "VARCHAR(2147483647)" + } ], + "watermarkSpecs" : [ ] + }, + "partitionKeys" : [ ] + } + } + }, + "outputType" : "ROW<`user_id` VARCHAR(2147483647), `payment_id` VARCHAR(2147483647)>", + "description" : "TableSourceScan(table=[[default_catalog, default_database, Payments]], fields=[user_id, payment_id])", + "inputProperties" : [ ] + }, { + "id" : 4, + "type" : "stream-exec-multi-join_1", + "joinTypes" : [ "INNER", "INNER", "INNER" ], + "joinConditions" : [ { + "kind" : "LITERAL", + "value" : true, + "type" : "BOOLEAN NOT NULL" + }, { + "kind" : "CALL", + "syntax" : "BINARY", + "internalName" : "$=$1", + "operands" : [ { + "kind" : "INPUT_REF", + "inputIndex" : 0, + "type" : "VARCHAR(2147483647)" + }, { + "kind" : "INPUT_REF", + "inputIndex" : 2, + "type" : "VARCHAR(2147483647)" + } ], + "type" : "BOOLEAN" + }, { + "kind" : "CALL", + "syntax" : "BINARY", + "internalName" : "$=$1", + "operands" : [ { + "kind" : "INPUT_REF", + "inputIndex" : 0, + "type" : "VARCHAR(2147483647)" + }, { + "kind" : "INPUT_REF", + "inputIndex" : 4, + "type" : "VARCHAR(2147483647)" + } ], + "type" : "BOOLEAN" + } ], + "multiJoinCondition" : null, + "joinAttributeMap" : { + "1" : [ { + "leftInputId" : 0, + "leftFieldIndex" : 0, + "rightInputId" : 1, + "rightFieldIndex" : 0 + } ], + "2" : [ { + "leftInputId" : 0, + "leftFieldIndex" : 0, + "rightInputId" : 2, + "rightFieldIndex" : 0 + } ] + }, + "inputUpsertKeys" : [ [ ], [ ], [ ] ], Review Comment: Not worth the effort. I agree. -- 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