aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sql_algebra/sql_builder/inner_join_builder.rb
blob: 6aec70332570701c3d6a079adbe99a1ae6824172 (plain) (blame)
1
2
3
4
5
class InnerJoinBuilder < JoinBuilder
  def join_type
    "INNER JOIN"
  end
end