# squerylBug **Repository Path**: zhongshigang/squerylBug ## Basic Information - **Project Name**: squerylBug - **Description**: Outer join can't work with tuple - **Primary Language**: Scala - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-09-29 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README If a sub query is Query[ATuple], a outer join with it can't generate correct SQL statement. For example, following code join(students0, DB.departments.leftOuter)((s, d) => select((s, d)) on (d.map(_.id) === s._1)), the s._1 will be replaced with a constant.