Flowdock
method

parse_pg_array

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: ArrayParser
parse_pg_array(string) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/postgresql/array_parser.rb, line 12
        def parse_pg_array(string) # :nodoc:
          local_index = 0
          array = []
          while(local_index < string.length)
            case string[local_index]
            when BRACKET_OPEN
              local_index,array = parse_array_contents(array, string, local_index + 1)
            when BRACKET_CLOSE
              return array
            end
            local_index += 1
          end

          array
        end
Register or log in to add new notes.