blob: 689e78a66c67c5f8bc09b3b0b75b489cc857cd4d [file] [log] [blame]
select * from tpch.nation n1
join[broadcast]
tpch.nation n2 on n1.n_regionkey=n2.n_regionkey
---- DISTRIBUTEDPLAN
PLAN-ROOT SINK
|
04:EXCHANGE [UNPARTITIONED]
|
02:HASH JOIN [INNER JOIN, BROADCAST]
| hash predicates: n1.n_regionkey = n2.n_regionkey
| runtime filters: RF000 <- n2.n_regionkey
|
|--03:EXCHANGE [BROADCAST]
| |
| 01:SCAN HDFS [tpch.nation n2]
| partitions=1/1 files=1 size=2.15KB
|
00:SCAN HDFS [tpch.nation n1]
partitions=1/1 files=1 size=2.15KB
runtime filters: RF000 -> n1.n_regionkey
====