Module: ActiveRecordMysqlSpatial::ActiveRecord::Quoting

Defined in:
lib/active_record_mysql_spatial/active_record/quoting.rb

Instance Method Summary collapse

Instance Method Details

#quote(value) ⇒ Object



8
9
10
11
12
13
14
15
# File 'lib/active_record_mysql_spatial/active_record/quoting.rb', line 8

def quote(value)
  case value
  when MySQL::Base
    quote_geom(value)
  else
    super
  end
end