method

extract_limit

extract_limit(sql_type)
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 149
        def extract_limit(sql_type)
          case sql_type
          when /^bigint/;    8
          when /^smallint/;  2
          when /^timestamp/; nil
          else super
          end
        end