Method: Blazer::Result#column_types
- Defined in:
- lib/blazer/result.rb
#column_types ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/blazer/result.rb', line 47 def column_types @column_types ||= begin columns.each_with_index.map do |k, i| v = (rows.find { |r| r[i] } || {})[i] if boom[k] "string" elsif v.is_a?(Numeric) "numeric" elsif v.is_a?(Time) || v.is_a?(Date) "time" elsif v.nil? nil else "string" end end end end |