Join-Object icon indicating copy to clipboard operation
Join-Object copied to clipboard

incorrect automatically named `FullJoin -on -eq`

Open iRon7 opened this issue 2 years ago • 0 comments

Based on feature #43

Actual:

1,2,3 | FullJoin 2,3,4 -On Left -eq Right

Left Right
---- -----
   1     1
   2     2
   3     3
   4     4

Expected:

1,2,3 | FullJoin 2,3,4 -On Left -eq Right

Left Right
---- -----
   1
   2     2
   3     3
         4

iRon7 avatar Jun 22 '23 05:06 iRon7