# File lib/criteria/sql.rb, line 56
    def _parse_row(cols, row)
      cols = @_cols if cols.empty?
      tm   = @_typemap
      i    = 0

      row.map! {
        | v |
        val  = _parse_val(v, tm[cols[i]]);
        i   += 1
        val
      }
      return row
    end