Skip to content

Commit

Permalink
typelevel#385 - document chaing with and without using a thrush - cut…
Browse files Browse the repository at this point in the history
… not copied...
  • Loading branch information
chris-twiner committed Jun 14, 2023
1 parent be58661 commit e49b3ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/FeatureOverview.md
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ libraryDependencies += "org.typelevel" %% "mouse" % "1.2.1"
import mouse.all._

val withBedroomInfoChained = aptTypedDs.joinInner(citiInfoTypedDS)( aptTypedDs('city) === citiInfoTypedDS('name) )
.thrush( interim => .joinLeft(bedroomStats)( interim.col('_1).field('city) === bedroomStats('city) ) )
.thrush( interim => interim.joinLeft(bedroomStats)( interim.col('_1).field('city) === bedroomStats('city) ) )

withBedroomInfoChained.show().run()
```
Expand Down

0 comments on commit e49b3ed

Please sign in to comment.