Method: Sequel::MySQL::DatasetMethods#join_type_sql

Defined in:
lib/sequel/adapters/shared/mysql.rb

#join_type_sql(join_type) ⇒ Object

Transforms :straight to STRAIGHT_JOIN.



676
677
678
679
680
681
682
# File 'lib/sequel/adapters/shared/mysql.rb', line 676

def join_type_sql(join_type)
  if join_type == :straight
    'STRAIGHT_JOIN'
  else
    super
  end
end