module Sequel::Postgres::AutoParameterizeInArray::TreatStringListAsTextArray
Private Instance Methods
_bound_variable_type_for_string_array(r)
click to toggle source
Assume all string arrays used on RHS of IN/NOT IN are for type text[]
# File lib/sequel/extensions/pg_auto_parameterize_in_array.rb 87 def _bound_variable_type_for_string_array(r) 88 "text" 89 end