postgresql_adapter.rb 30.0 KB
Newer Older
1 2 3 4
# Make sure we're using pg high enough for type casts and Ruby 2.2+ compatibility
gem 'pg', '~> 0.18'
require 'pg'

S
Sean Griffin 已提交
5 6 7
require "active_record/connection_adapters/abstract_adapter"
require "active_record/connection_adapters/postgresql/column"
require "active_record/connection_adapters/postgresql/database_statements"
8
require "active_record/connection_adapters/postgresql/explain_pretty_printer"
S
Sean Griffin 已提交
9 10 11 12
require "active_record/connection_adapters/postgresql/oid"
require "active_record/connection_adapters/postgresql/quoting"
require "active_record/connection_adapters/postgresql/referential_integrity"
require "active_record/connection_adapters/postgresql/schema_definitions"
13
require "active_record/connection_adapters/postgresql/schema_dumper"
S
Sean Griffin 已提交
14 15 16 17
require "active_record/connection_adapters/postgresql/schema_statements"
require "active_record/connection_adapters/postgresql/type_metadata"
require "active_record/connection_adapters/postgresql/utils"
require "active_record/connection_adapters/statement_pool"
18

D
Dan McClain 已提交
19 20
require 'ipaddr'

D
Initial  
David Heinemeier Hansson 已提交
21
module ActiveRecord
22
  module ConnectionHandling # :nodoc:
D
Initial  
David Heinemeier Hansson 已提交
23
    # Establishes a connection to the database that's used by all Active Record objects
24
    def postgresql_connection(config)
25
      conn_params = config.symbolize_keys
D
Initial  
David Heinemeier Hansson 已提交
26

27
      conn_params.delete_if { |_, v| v.nil? }
28 29 30 31

      # Map ActiveRecords param names to PGs.
      conn_params[:user] = conn_params.delete(:username) if conn_params[:username]
      conn_params[:dbname] = conn_params.delete(:database) if conn_params[:database]
D
Initial  
David Heinemeier Hansson 已提交
32

33
      # Forward only valid config params to PGconn.connect.
34 35
      valid_conn_param_keys = PGconn.conndefaults_hash.keys + [:requiressl]
      conn_params.slice!(*valid_conn_param_keys)
36

37
      # The postgres drivers don't allow the creation of an unconnected PGconn object,
38
      # so just pass a nil connection object for the time being.
39
      ConnectionAdapters::PostgreSQLAdapter.new(nil, logger, conn_params, config)
40 41
    end
  end
42

43
  module ConnectionAdapters
44
    # The PostgreSQL adapter works with the native C (https://bitbucket.org/ged/ruby-pg) driver.
45 46 47
    #
    # Options:
    #
48 49
    # * <tt>:host</tt> - Defaults to a Unix-domain socket in /tmp. On machines without Unix-domain sockets,
    #   the default is to connect to localhost.
P
Pratik Naik 已提交
50
    # * <tt>:port</tt> - Defaults to 5432.
51 52 53
    # * <tt>:username</tt> - Defaults to be the same as the operating system name of the user running the application.
    # * <tt>:password</tt> - Password to be used if the server demands password authentication.
    # * <tt>:database</tt> - Defaults to be the same as the user name.
54
    # * <tt>:schema_search_path</tt> - An optional schema search path for the connection given
55
    #   as a string of comma-separated schema names. This is backward-compatible with the <tt>:schema_order</tt> option.
56
    # * <tt>:encoding</tt> - An optional client encoding that is used in a <tt>SET client_encoding TO
57
    #   <encoding></tt> call on the connection.
58
    # * <tt>:min_messages</tt> - An optional client min messages that is used in a
59
    #   <tt>SET client_min_messages TO <min_messages></tt> call on the connection.
60 61
    # * <tt>:variables</tt> - An optional hash of additional parameters that
    #   will be used in <tt>SET SESSION key = val</tt> calls on the connection.
62
    # * <tt>:insert_returning</tt> - An optional boolean to control the use of <tt>RETURNING</tt> for <tt>INSERT</tt> statements
63
    #   defaults to true.
64 65
    #
    # Any further options are used as connection parameters to libpq. See
66
    # http://www.postgresql.org/docs/current/static/libpq-connect.html for the
67 68 69
    # list of parameters.
    #
    # In addition, default connection parameters of libpq can be set per environment variables.
70
    # See http://www.postgresql.org/docs/current/static/libpq-envars.html .
71
    class PostgreSQLAdapter < AbstractAdapter
72
      ADAPTER_NAME = 'PostgreSQL'.freeze
73 74

      NATIVE_DATABASE_TYPES = {
75
        primary_key: "serial primary key",
76
        string:      { name: "character varying" },
77 78 79 80 81 82 83
        text:        { name: "text" },
        integer:     { name: "integer" },
        float:       { name: "float" },
        decimal:     { name: "decimal" },
        datetime:    { name: "timestamp" },
        time:        { name: "time" },
        date:        { name: "date" },
B
bUg 已提交
84 85 86 87 88 89
        daterange:   { name: "daterange" },
        numrange:    { name: "numrange" },
        tsrange:     { name: "tsrange" },
        tstzrange:   { name: "tstzrange" },
        int4range:   { name: "int4range" },
        int8range:   { name: "int8range" },
90 91 92 93 94 95 96 97
        binary:      { name: "bytea" },
        boolean:     { name: "boolean" },
        xml:         { name: "xml" },
        tsvector:    { name: "tsvector" },
        hstore:      { name: "hstore" },
        inet:        { name: "inet" },
        cidr:        { name: "cidr" },
        macaddr:     { name: "macaddr" },
98
        uuid:        { name: "uuid" },
99
        json:        { name: "json" },
100
        jsonb:       { name: "jsonb" },
101
        ltree:       { name: "ltree" },
102
        citext:      { name: "citext" },
S
Sean Griffin 已提交
103
        point:       { name: "point" },
104 105 106 107 108 109
        line:        { name: "line" },
        lseg:        { name: "lseg" },
        box:         { name: "box" },
        path:        { name: "path" },
        polygon:     { name: "polygon" },
        circle:      { name: "circle" },
S
Sean Griffin 已提交
110 111
        bit:         { name: "bit" },
        bit_varying: { name: "bit varying" },
112
        money:       { name: "money" },
113 114
      }

115 116 117 118
      OID = PostgreSQL::OID #:nodoc:

      include PostgreSQL::Quoting
      include PostgreSQL::ReferentialIntegrity
119
      include PostgreSQL::SchemaStatements
120
      include PostgreSQL::DatabaseStatements
121
      include PostgreSQL::ColumnDumper
122
      include Savepoints
123

124
      def schema_creation # :nodoc:
125 126 127
        PostgreSQL::SchemaCreation.new self
      end

128
      # Returns true, since this connection adapter supports prepared statement
129
      # caching.
130 131 132 133
      def supports_statement_cache?
        true
      end

134 135 136 137
      def supports_index_sort_order?
        true
      end

138 139 140 141
      def supports_partial_index?
        true
      end

142 143 144 145
      def supports_transaction_isolation?
        true
      end

146 147 148 149
      def supports_foreign_keys?
        true
      end

150 151 152 153
      def supports_views?
        true
      end

154 155 156 157
      def supports_datetime_with_precision?
        true
      end

158 159 160 161
      def supports_json?
        postgresql_version >= 90200
      end

162 163 164 165
      def index_algorithms
        { concurrently: 'CONCURRENTLY' }
      end

166 167
      class StatementPool < ConnectionAdapters::StatementPool
        def initialize(connection, max)
168 169
          super(max)
          @connection = connection
170 171 172 173 174 175 176 177
          @counter = 0
        end

        def next_key
          "a#{@counter + 1}"
        end

        def []=(sql, key)
178
          super.tap { @counter += 1 }
179 180
        end

181
        private
182

183 184 185 186 187 188 189 190 191
          def dealloc(key)
            @connection.query "DEALLOCATE #{key}" if connection_active?
          end

          def connection_active?
            @connection.status == PGconn::CONNECTION_OK
          rescue PGError
            false
          end
192 193
      end

194 195
      # Initializes and connects a PostgreSQL adapter.
      def initialize(connection, logger, connection_parameters, config)
196
        super(connection, logger, config)
197

198
        @visitor = Arel::Visitors::PostgreSQL.new self
199
        if self.class.type_cast_config_to_boolean(config.fetch(:prepared_statements) { true })
200
          @prepared_statements = true
201
          @visitor.extend(DetermineIfPreparableVisitor)
202
        else
203
          @prepared_statements = false
204 205
        end

206
        @connection_parameters = connection_parameters
207

208 209
        # @local_tz is initialized as nil to avoid warnings when connect tries to use it
        @local_tz = nil
210 211
        @table_alias_length = nil

212
        connect
213
        add_pg_encoders
214
        @statements = StatementPool.new @connection,
215
                                        self.class.type_cast_config_to_integer(config.fetch(:statement_limit) { 1000 })
216

217
        if postgresql_version < 90100
218
          raise "Your version of PostgreSQL (#{postgresql_version}) is too old. Active Record supports PostgreSQL >= 9.1."
219 220
        end

221 222
        add_pg_decoders

223
        @type_map = Type::HashLookupTypeMap.new
224
        initialize_type_map(type_map)
225
        @local_tz = execute('SHOW TIME ZONE', 'SCHEMA').first["TimeZone"]
226
        @use_insert_returning = @config.key?(:insert_returning) ? self.class.type_cast_config_to_boolean(@config[:insert_returning]) : true
227 228
      end

X
Xavier Noria 已提交
229
      # Clears the prepared statements cache.
230 231 232 233
      def clear_cache!
        @statements.clear
      end

234 235 236 237
      def truncate(table_name, name = nil)
        exec_query "TRUNCATE TABLE #{quote_table_name(table_name)}", name, []
      end

238 239
      # Is this connection alive and ready for queries?
      def active?
240 241
        @connection.query 'SELECT 1'
        true
242
      rescue PGError
243
        false
244 245 246 247
      end

      # Close then reopen the connection.
      def reconnect!
248
        super
249 250
        @connection.reset
        configure_connection
251
      end
252

253 254
      def reset!
        clear_cache!
255 256 257 258 259 260
        reset_transaction
        unless @connection.transaction_status == ::PG::PQTRANS_IDLE
          @connection.query 'ROLLBACK'
        end
        @connection.query 'DISCARD ALL'
        configure_connection
261 262
      end

263 264
      # Disconnects from the database if already connected. Otherwise, this
      # method does nothing.
265
      def disconnect!
266
        super
267 268
        @connection.close rescue nil
      end
269

270
      def native_database_types #:nodoc:
271
        NATIVE_DATABASE_TYPES
272
      end
273

274
      # Returns true, since this connection adapter supports migrations.
275 276
      def supports_migrations?
        true
277 278
      end

279
      # Does PostgreSQL support finding primary key on non-Active Record tables?
280 281 282 283
      def supports_primary_key? #:nodoc:
        true
      end

284
      def set_standard_conforming_strings
285
        execute('SET standard_conforming_strings = on', 'SCHEMA')
286 287
      end

288 289 290
      def supports_ddl_transactions?
        true
      end
291

292 293 294 295
      def supports_advisory_locks?
        true
      end

296 297 298 299
      def supports_explain?
        true
      end

300
      def supports_extensions?
301
        true
302 303
      end

A
Andrew White 已提交
304 305 306 307 308
      # Range datatypes weren't introduced until PostgreSQL 9.2
      def supports_ranges?
        postgresql_version >= 90200
      end

309 310 311 312
      def supports_materialized_views?
        postgresql_version >= 90300
      end

313 314 315
      def get_advisory_lock(lock_id) # :nodoc:
        unless lock_id.is_a?(Integer) && lock_id.bit_length <= 63
          raise(ArgumentError, "Postgres requires advisory lock ids to be a signed 64 bit integer")
316
        end
317
        select_value("SELECT pg_try_advisory_lock(#{lock_id});")
318 319
      end

320 321 322
      def release_advisory_lock(lock_id) # :nodoc:
        unless lock_id.is_a?(Integer) && lock_id.bit_length <= 63
          raise(ArgumentError, "Postgres requires advisory lock ids to be a signed 64 bit integer")
323
        end
324
        select_value("SELECT pg_advisory_unlock(#{lock_id})")
325 326
      end

327
      def enable_extension(name)
328
        exec_query("CREATE EXTENSION IF NOT EXISTS \"#{name}\"").tap {
329 330
          reload_type_map
        }
331 332 333
      end

      def disable_extension(name)
334
        exec_query("DROP EXTENSION IF EXISTS \"#{name}\" CASCADE").tap {
335 336
          reload_type_map
        }
337 338 339
      end

      def extension_enabled?(name)
R
Rafael Mendonça França 已提交
340
        if supports_extensions?
341
          res = exec_query "SELECT EXISTS(SELECT * FROM pg_available_extensions WHERE name = '#{name}' AND installed_version IS NOT NULL) as enabled",
342
            'SCHEMA'
343
          res.cast_values.first
344
        end
345 346
      end

347 348
      def extensions
        if supports_extensions?
349
          exec_query("SELECT extname from pg_extension", "SCHEMA").cast_values
350
        else
351
          super
352 353 354
        end
      end

355
      # Returns the configured supported identifier length supported by PostgreSQL
356
      def table_alias_length
K
kennyj 已提交
357
        @table_alias_length ||= query('SHOW max_identifier_length', 'SCHEMA')[0][0].to_i
358
      end
359

360 361
      # Set the authorized user for this session
      def session_auth=(user)
362
        clear_cache!
A
Aaron Patterson 已提交
363
        exec_query "SET SESSION AUTHORIZATION #{user}"
364 365
      end

366 367
      def use_insert_returning?
        @use_insert_returning
368 369
      end

370 371 372 373
      def valid_type?(type)
        !native_database_types[type].nil?
      end

374
      def update_table_definition(table_name, base) #:nodoc:
375
        PostgreSQL::Table.new(table_name, base)
376 377
      end

378 379 380 381 382
      def lookup_cast_type(sql_type) # :nodoc:
        oid = execute("SELECT #{quote(sql_type)}::regtype::oid", "SCHEMA").first['oid'].to_i
        super(oid)
      end

383 384 385 386 387 388 389 390 391 392
      def column_name_for_operation(operation, node) # :nodoc:
        OPERATION_ALIASES.fetch(operation) { operation.downcase }
      end

      OPERATION_ALIASES = { # :nodoc:
        "maximum" => "max",
        "minimum" => "min",
        "average" => "avg",
      }

D
Derek Prior 已提交
393 394 395 396
      # Returns the version of the connected PostgreSQL server.
      def postgresql_version
        @connection.server_version
      end
397

D
Derek Prior 已提交
398
      protected
399

400
        # See http://www.postgresql.org/docs/current/static/errcodes-appendix.html
401 402 403
        FOREIGN_KEY_VIOLATION = "23503"
        UNIQUE_VIOLATION      = "23505"

404
        def translate_exception(exception, message)
405 406
          return exception unless exception.respond_to?(:result)

407
          case exception.result.try(:error_field, PGresult::PG_DIAG_SQLSTATE)
408
          when UNIQUE_VIOLATION
409
            RecordNotUnique.new(message)
410
          when FOREIGN_KEY_VIOLATION
411
            InvalidForeignKey.new(message)
412 413 414 415 416
          else
            super
          end
        end

D
Initial  
David Heinemeier Hansson 已提交
417
      private
418

419
        def get_oid_type(oid, fmod, column_name, sql_type = '') # :nodoc:
420
          if !type_map.key?(oid)
421
            load_additional_types(type_map, [oid])
422 423
          end

424 425 426 427 428 429
          type_map.fetch(oid, fmod, sql_type) {
            warn "unknown OID #{oid}: failed to recognize type of '#{column_name}'. It will be treated as String."
            Type::Value.new.tap do |cast_type|
              type_map.register_type(oid, cast_type)
            end
          }
430 431
        end

432
        def initialize_type_map(m) # :nodoc:
433 434 435
          register_class_with_limit m, 'int2', Type::Integer
          register_class_with_limit m, 'int4', Type::Integer
          register_class_with_limit m, 'int8', Type::Integer
436
          m.alias_type 'oid', 'int2'
437
          m.register_type 'float4', Type::Float.new
438 439
          m.alias_type 'float8', 'float4'
          m.register_type 'text', Type::Text.new
S
Sean Griffin 已提交
440
          register_class_with_limit m, 'varchar', Type::String
441 442 443 444
          m.alias_type 'char', 'varchar'
          m.alias_type 'name', 'varchar'
          m.alias_type 'bpchar', 'varchar'
          m.register_type 'bool', Type::Boolean.new
S
Sean Griffin 已提交
445 446
          register_class_with_limit m, 'bit', OID::Bit
          register_class_with_limit m, 'varbit', OID::BitVarying
447
          m.alias_type 'timestamptz', 'timestamp'
448
          m.register_type 'date', Type::Date.new
449 450 451 452 453

          m.register_type 'money', OID::Money.new
          m.register_type 'bytea', OID::Bytea.new
          m.register_type 'point', OID::Point.new
          m.register_type 'hstore', OID::Hstore.new
454
          m.register_type 'json', OID::Json.new
455
          m.register_type 'jsonb', OID::Jsonb.new
456 457 458
          m.register_type 'cidr', OID::Cidr.new
          m.register_type 'inet', OID::Inet.new
          m.register_type 'uuid', OID::Uuid.new
459
          m.register_type 'xml', OID::Xml.new
460 461 462 463
          m.register_type 'tsvector', OID::SpecializedString.new(:tsvector)
          m.register_type 'macaddr', OID::SpecializedString.new(:macaddr)
          m.register_type 'citext', OID::SpecializedString.new(:citext)
          m.register_type 'ltree', OID::SpecializedString.new(:ltree)
464 465 466 467 468 469
          m.register_type 'line', OID::SpecializedString.new(:line)
          m.register_type 'lseg', OID::SpecializedString.new(:lseg)
          m.register_type 'box', OID::SpecializedString.new(:box)
          m.register_type 'path', OID::SpecializedString.new(:path)
          m.register_type 'polygon', OID::SpecializedString.new(:polygon)
          m.register_type 'circle', OID::SpecializedString.new(:circle)
470 471 472 473

          # FIXME: why are we keeping these types as strings?
          m.alias_type 'interval', 'varchar'

474 475
          register_class_with_precision m, 'time', Type::Time
          register_class_with_precision m, 'timestamp', OID::DateTime
S
Sean Griffin 已提交
476

477
          m.register_type 'numeric' do |_, fmod, sql_type|
S
Sean Griffin 已提交
478
            precision = extract_precision(sql_type)
S
Sean Griffin 已提交
479
            scale = extract_scale(sql_type)
S
Sean Griffin 已提交
480

481 482 483 484 485 486 487 488
            # The type for the numeric depends on the width of the field,
            # so we'll do something special here.
            #
            # When dealing with decimal columns:
            #
            # places after decimal  = fmod - 4 & 0xffff
            # places before decimal = (fmod - 4) >> 16 & 0xffff
            if fmod && (fmod - 4 & 0xffff).zero?
489 490
              # FIXME: Remove this class, and the second argument to
              # lookups on PG
491 492 493 494
              Type::DecimalWithoutScale.new(precision: precision)
            else
              OID::Decimal.new(precision: precision, scale: scale)
            end
S
Sean Griffin 已提交
495 496
          end

497 498 499
          load_additional_types(m)
        end

S
Sean Griffin 已提交
500 501
        def extract_limit(sql_type) # :nodoc:
          case sql_type
502 503 504 505 506 507
          when /^bigint/i, /^int8/i
            8
          when /^smallint/i
            2
          else
            super
S
Sean Griffin 已提交
508 509 510
          end
        end

511
        # Extracts the value from a PostgreSQL column default definition.
S
Sean Griffin 已提交
512
        def extract_value_from_default(default) # :nodoc:
513
          case default
514
            # Quoted types
515 516 517 518 519 520 521
            when /\A[\(B]?'(.*)'.*::"?([\w. ]+)"?(?:\[\])?\z/m
              # The default 'now'::date is CURRENT_DATE
              if $1 == "now".freeze && $2 == "date".freeze
                nil
              else
                $1.gsub("''".freeze, "'".freeze)
              end
522
            # Boolean types
B
brainopia 已提交
523
            when 'true'.freeze, 'false'.freeze
524
              default
525
            # Numeric types
526
            when /\A\(?(-?\d+(\.\d*)?)\)?(::bigint)?\z/
527 528 529 530 531 532 533 534 535 536 537
              $1
            # Object identifier types
            when /\A-?\d+\z/
              $1
            else
              # Anything else is blank, some user type, or some function
              # and we can't know the value of that, so return nil.
              nil
          end
        end

538
        def extract_default_function(default_value, default) # :nodoc:
539 540 541
          default if has_default_function?(default_value, default)
        end

542
        def has_default_function?(default_value, default) # :nodoc:
543
          !default_value && (%r{\w+\(.*\)|\(.*\)::\w+} === default)
544 545
        end

546
        def load_additional_types(type_map, oids = nil) # :nodoc:
547 548
          initializer = OID::TypeMapInitializer.new(type_map)

549
          if supports_ranges?
550
            query = <<-SQL
551
              SELECT t.oid, t.typname, t.typelem, t.typdelim, t.typinput, r.rngsubtype, t.typtype, t.typbasetype
552 553 554 555
              FROM pg_type as t
              LEFT JOIN pg_range as r ON oid = rngtypid
            SQL
          else
556
            query = <<-SQL
557
              SELECT t.oid, t.typname, t.typelem, t.typdelim, t.typinput, t.typtype, t.typbasetype
558 559 560
              FROM pg_type as t
            SQL
          end
561 562 563

          if oids
            query += "WHERE t.oid::integer IN (%s)" % oids.join(", ")
564 565
          else
            query += initializer.query_conditions_for_initial_load(type_map)
566 567
          end

568 569 570
          execute_and_clear(query, 'SCHEMA', []) do |records|
            initializer.run(records)
          end
571 572
        end

573
        FEATURE_NOT_SUPPORTED = "0A000" #:nodoc:
574

575 576 577 578 579 580 581 582
        def execute_and_clear(sql, name, binds, prepare: false)
          if without_prepared_statement?(binds)
            result = exec_no_cache(sql, name, [])
          elsif !prepare
            result = exec_no_cache(sql, name, binds)
          else
            result = exec_cache(sql, name, binds)
          end
583 584 585 586 587
          ret = yield result
          result.clear
          ret
        end

588
        def exec_no_cache(sql, name, binds)
589 590
          type_casted_binds = binds.map { |attr| type_cast(attr.value_for_database) }
          log(sql, name, binds) { @connection.async_exec(sql, type_casted_binds) }
591
        end
592

593
        def exec_cache(sql, name, binds)
594
          stmt_key = prepare_statement(sql)
S
Sean Griffin 已提交
595
          type_casted_binds = binds.map { |attr| type_cast(attr.value_for_database) }
596

S
Sean Griffin 已提交
597 598
          log(sql, name, binds, stmt_key) do
            @connection.exec_prepared(stmt_key, type_casted_binds)
599 600
          end
        rescue ActiveRecord::StatementInvalid => e
601
          raise unless is_cached_plan_failure?(e)
602

603 604 605 606 607 608
          # Nothing we can do if we are in a transaction because all commands
          # will raise InFailedSQLTransaction
          if in_transaction?
            raise ActiveRecord::PreparedStatementCacheExpired.new(e.cause.message)
          else
            # outside of transactions we can simply flush this query and retry
609 610
            @statements.delete sql_key(sql)
            retry
611 612 613
          end
        end

614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
        # Annoyingly, the code for prepared statements whose return value may
        # have changed is FEATURE_NOT_SUPPORTED.
        #
        # This covers various different error types so we need to do additional
        # work to classify the exception definitively as a
        # ActiveRecord::PreparedStatementCacheExpired
        #
        # Check here for more details:
        # http://git.postgresql.org/gitweb/?p=postgresql.git;a=blob;f=src/backend/utils/cache/plancache.c#l573
        CACHED_PLAN_HEURISTIC = 'cached plan must not change result type'.freeze
        def is_cached_plan_failure?(e)
          pgerror = e.cause
          code = pgerror.result.result_error_field(PGresult::PG_DIAG_SQLSTATE)
          code == FEATURE_NOT_SUPPORTED && pgerror.message.include?(CACHED_PLAN_HEURISTIC)
        rescue
          false
        end

        def in_transaction?
          open_transactions > 0
        end

636 637 638 639 640 641 642 643 644 645
        # Returns the statement identifier for the client side cache
        # of statements
        def sql_key(sql)
          "#{schema_search_path}-#{sql}"
        end

        # Prepare the statement if it hasn't been prepared, return
        # the statement key.
        def prepare_statement(sql)
          sql_key = sql_key(sql)
646
          unless @statements.key? sql_key
647
            nextkey = @statements.next_key
648 649 650
            begin
              @connection.prepare nextkey, sql
            rescue => e
A
Aaron Patterson 已提交
651
              raise translate_exception_class(e, sql)
652
            end
653 654
            # Clear the queue
            @connection.get_last_result
655
            @statements[sql_key] = nextkey
656
          end
657
          @statements[sql_key]
658
        end
659

660 661 662
        # Connects to a PostgreSQL server and sets up the adapter depending on the
        # connected server's characteristics.
        def connect
663
          @connection = PGconn.connect(@connection_parameters)
664
          configure_connection
665 666
        rescue ::PG::Error => error
          if error.message.include?("does not exist")
667
            raise ActiveRecord::NoDatabaseError
668
          else
669
            raise
670
          end
671 672
        end

673
        # Configures the encoding, verbosity, schema search path, and time zone of the connection.
674
        # This is called by #connect and should not be called manually.
675 676
        def configure_connection
          if @config[:encoding]
677
            @connection.set_client_encoding(@config[:encoding])
678
          end
679
          self.client_min_messages = @config[:min_messages] || 'warning'
680
          self.schema_search_path = @config[:schema_search_path] || @config[:schema_order]
681

682
          # Use standard-conforming strings so we don't have to do the E'...' dance.
683 684
          set_standard_conforming_strings

685
          # If using Active Record's time zone support configure the connection to return
686
          # TIMESTAMP WITH ZONE types in UTC.
687
          # (SET TIME ZONE does not use an equals sign like other SET variables)
688
          if ActiveRecord::Base.default_timezone == :utc
689
            execute("SET time zone 'UTC'", 'SCHEMA')
690
          elsif @local_tz
691
            execute("SET time zone '#{@local_tz}'", 'SCHEMA')
692
          end
693 694

          # SET statements from :variables config hash
695
          # http://www.postgresql.org/docs/current/static/sql-set.html
696 697 698 699
          variables = @config[:variables] || {}
          variables.map do |k, v|
            if v == ':default' || v == :default
              # Sets the value to the global or compile default
700
              execute("SET SESSION #{k} TO DEFAULT", 'SCHEMA')
701
            elsif !v.nil?
702
              execute("SET SESSION #{k} TO #{quote(v)}", 'SCHEMA')
703 704
            end
          end
705 706
        end

707
        # Returns the current ID of a table's sequence.
708
        def last_insert_id_result(sequence_name) # :nodoc:
709
          exec_query("SELECT currval('#{sequence_name}')", 'SQL')
D
Initial  
David Heinemeier Hansson 已提交
710 711
        end

712
        # Returns the list of a table's column names, data types, and default values.
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
        #
        # The underlying query is roughly:
        #  SELECT column.name, column.type, default.value
        #    FROM column LEFT JOIN default
        #      ON column.table_id = default.table_id
        #     AND column.num = default.column_num
        #   WHERE column.table_id = get_table_id('table_name')
        #     AND column.num > 0
        #     AND NOT column.is_dropped
        #   ORDER BY column.num
        #
        # If the table name is not prefixed with a schema, the database will
        # take the first match from the schema search path.
        #
        # Query implementation notes:
        #  - format_type includes the column size constraint, e.g. varchar(50)
        #  - ::regclass is a function that gives the id for a table name
730
        def column_definitions(table_name) # :nodoc:
731
          query(<<-end_sql, 'SCHEMA')
732
              SELECT a.attname, format_type(a.atttypid, a.atttypmod),
733 734 735
                     pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod,
             (SELECT c.collname FROM pg_collation c, pg_type t
               WHERE c.oid = a.attcollation AND t.oid = a.atttypid AND a.attcollation <> t.typcollation)
736 737 738 739 740
                FROM pg_attribute a LEFT JOIN pg_attrdef d
                  ON a.attrelid = d.adrelid AND a.attnum = d.adnum
               WHERE a.attrelid = '#{quote_table_name(table_name)}'::regclass
                 AND a.attnum > 0 AND NOT a.attisdropped
               ORDER BY a.attnum
741
          end_sql
D
Initial  
David Heinemeier Hansson 已提交
742
        end
743

744
        def extract_table_ref_from_insert_sql(sql) # :nodoc:
745
          sql[/into\s("[A-Za-z0-9_."\[\]\s]+"|[A-Za-z0-9_."\[\]]+)\s*/im]
746 747 748
          $1.strip if $1
        end

749
        def create_table_definition(name, temporary = false, options = nil, as = nil) # :nodoc:
750
          PostgreSQL::TableDefinition.new(name, temporary, options, as)
751
        end
S
Sean Griffin 已提交
752 753 754 755 756 757 758 759 760 761 762 763 764 765

        def can_perform_case_insensitive_comparison_for?(column)
          @case_insensitive_cache ||= {}
          @case_insensitive_cache[column.sql_type] ||= begin
            sql = <<-end_sql
              SELECT exists(
                SELECT * FROM pg_proc
                INNER JOIN pg_cast
                  ON casttarget::text::oidvector = proargtypes
                WHERE proname = 'lower'
                  AND castsource = '#{column.sql_type}'::regtype::oid
              )
            end_sql
            execute_and_clear(sql, "SCHEMA", []) do |result|
766
              result.getvalue(0, 0)
S
Sean Griffin 已提交
767 768 769
            end
          end
        end
770

771 772 773 774 775 776 777 778 779
        def add_pg_encoders
          map = PG::TypeMapByClass.new
          map[Integer] = PG::TextEncoder::Integer.new
          map[TrueClass] = PG::TextEncoder::Boolean.new
          map[FalseClass] = PG::TextEncoder::Boolean.new
          map[Float] = PG::TextEncoder::Float.new
          @connection.type_map_for_queries = map
        end

780 781 782 783 784 785 786 787 788 789
        def add_pg_decoders
          coders_by_name = {
            'int2' => PG::TextDecoder::Integer,
            'int4' => PG::TextDecoder::Integer,
            'int8' => PG::TextDecoder::Integer,
            'oid' => PG::TextDecoder::Integer,
            'float4' => PG::TextDecoder::Float,
            'float8' => PG::TextDecoder::Float,
            'bool' => PG::TextDecoder::Boolean,
          }
790 791
          known_coder_types = coders_by_name.keys.map { |n| quote(n) }
          query = <<-SQL % known_coder_types.join(", ")
792
            SELECT t.oid, t.typname
793
            FROM pg_type as t
794
            WHERE t.typname IN (%s)
795 796 797
          SQL
          coders = execute_and_clear(query, "SCHEMA", []) do |result|
            result
798
              .map { |row| construct_coder(row, coders_by_name[row['typname']]) }
799 800 801 802 803 804 805 806 807 808
              .compact
          end

          map = PG::TypeMapByOid.new
          coders.each { |coder| map.add_coder(coder) }
          @connection.type_map_for_results = map
        end

        def construct_coder(row, coder_class)
          return unless coder_class
809
          coder_class.new(oid: row['oid'].to_i, name: row['typname'])
810
        end
811 812 813 814 815 816 817

        ActiveRecord::Type.add_modifier({ array: true }, OID::Array, adapter: :postgresql)
        ActiveRecord::Type.add_modifier({ range: true }, OID::Range, adapter: :postgresql)
        ActiveRecord::Type.register(:bit, OID::Bit, adapter: :postgresql)
        ActiveRecord::Type.register(:bit_varying, OID::BitVarying, adapter: :postgresql)
        ActiveRecord::Type.register(:binary, OID::Bytea, adapter: :postgresql)
        ActiveRecord::Type.register(:cidr, OID::Cidr, adapter: :postgresql)
Y
yuuji.yaginuma 已提交
818
        ActiveRecord::Type.register(:datetime, OID::DateTime, adapter: :postgresql)
819 820 821 822
        ActiveRecord::Type.register(:decimal, OID::Decimal, adapter: :postgresql)
        ActiveRecord::Type.register(:enum, OID::Enum, adapter: :postgresql)
        ActiveRecord::Type.register(:hstore, OID::Hstore, adapter: :postgresql)
        ActiveRecord::Type.register(:inet, OID::Inet, adapter: :postgresql)
823
        ActiveRecord::Type.register(:json, OID::Json, adapter: :postgresql)
824 825
        ActiveRecord::Type.register(:jsonb, OID::Jsonb, adapter: :postgresql)
        ActiveRecord::Type.register(:money, OID::Money, adapter: :postgresql)
826
        ActiveRecord::Type.register(:point, OID::Rails51Point, adapter: :postgresql)
827
        ActiveRecord::Type.register(:legacy_point, OID::Point, adapter: :postgresql)
828 829 830
        ActiveRecord::Type.register(:uuid, OID::Uuid, adapter: :postgresql)
        ActiveRecord::Type.register(:vector, OID::Vector, adapter: :postgresql)
        ActiveRecord::Type.register(:xml, OID::Xml, adapter: :postgresql)
D
Initial  
David Heinemeier Hansson 已提交
831 832 833
    end
  end
end