From e49b3ed3f979668b95f95d9870c33ef312655a3f Mon Sep 17 00:00:00 2001 From: Chris Twiner Date: Wed, 14 Jun 2023 17:43:57 +0200 Subject: [PATCH] #385 - document chaing with and without using a thrush - cut not copied... --- docs/FeatureOverview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FeatureOverview.md b/docs/FeatureOverview.md index 1842cc8c..81f87165 100644 --- a/docs/FeatureOverview.md +++ b/docs/FeatureOverview.md @@ -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() ```