postgresql_adapter.rb 30.1 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
Initial  
David Heinemeier Hansson 已提交
19
module ActiveRecord
20
  module ConnectionHandling # :nodoc:
D
Initial  
David Heinemeier Hansson 已提交
21
    # Establishes a connection to the database that's used by all Active Record objects
22
    def postgresql_connection(config)
23
      conn_params = config.symbolize_keys
D
Initial  
David Heinemeier Hansson 已提交
24

25
      conn_params.delete_if { |_, v| v.nil? }
26 27 28 29

      # 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 已提交
30

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

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

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

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

113 114 115 116
      OID = PostgreSQL::OID #:nodoc:

      include PostgreSQL::Quoting
      include PostgreSQL::ReferentialIntegrity
117
      include PostgreSQL::SchemaStatements
118
      include PostgreSQL::DatabaseStatements
119
      include PostgreSQL::ColumnDumper
120
      include Savepoints
121

122
      def schema_creation # :nodoc:
123 124 125
        PostgreSQL::SchemaCreation.new self
      end

126 127 128 129
      def arel_visitor # :nodoc:
        Arel::Visitors::PostgreSQL.new(self)
      end

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

136 137 138 139
      def supports_index_sort_order?
        true
      end

140 141 142 143
      def supports_partial_index?
        true
      end

144 145 146 147
      def supports_transaction_isolation?
        true
      end

148 149 150 151
      def supports_foreign_keys?
        true
      end

152 153 154 155
      def supports_views?
        true
      end

156 157 158 159
      def supports_datetime_with_precision?
        true
      end

160 161 162 163
      def supports_json?
        postgresql_version >= 90200
      end

164 165 166 167
      def supports_comments?
        true
      end

168 169 170 171
      def supports_comments_in_create?
        false
      end

172 173 174 175
      def index_algorithms
        { concurrently: 'CONCURRENTLY' }
      end

176 177
      class StatementPool < ConnectionAdapters::StatementPool
        def initialize(connection, max)
178 179
          super(max)
          @connection = connection
180 181 182 183 184 185 186 187
          @counter = 0
        end

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

        def []=(sql, key)
188
          super.tap { @counter += 1 }
189 190
        end

191
        private
192

193 194 195 196 197 198 199 200 201
          def dealloc(key)
            @connection.query "DEALLOCATE #{key}" if connection_active?
          end

          def connection_active?
            @connection.status == PGconn::CONNECTION_OK
          rescue PGError
            false
          end
202 203
      end

204 205
      # Initializes and connects a PostgreSQL adapter.
      def initialize(connection, logger, connection_parameters, config)
206
        super(connection, logger, config)
207

208
        @connection_parameters = connection_parameters
209

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

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

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

223 224
        add_pg_decoders

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

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

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

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

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

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

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

272
      def native_database_types #:nodoc:
273
        NATIVE_DATABASE_TYPES
274
      end
275

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

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

286
      def set_standard_conforming_strings
287
        execute('SET standard_conforming_strings = on', 'SCHEMA')
288 289
      end

290 291 292
      def supports_ddl_transactions?
        true
      end
293

294 295 296 297
      def supports_advisory_locks?
        true
      end

298 299 300 301
      def supports_explain?
        true
      end

302
      def supports_extensions?
303
        true
304 305
      end

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

311 312 313 314
      def supports_materialized_views?
        postgresql_version >= 90300
      end

315 316 317
      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")
318
        end
319
        select_value("SELECT pg_try_advisory_lock(#{lock_id});")
320 321
      end

322 323 324
      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")
325
        end
326
        select_value("SELECT pg_advisory_unlock(#{lock_id})")
327 328
      end

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

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

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

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

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

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

368 369
      def use_insert_returning?
        @use_insert_returning
370 371
      end

372 373 374 375
      def valid_type?(type)
        !native_database_types[type].nil?
      end

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

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

385 386 387 388 389 390 391 392 393 394
      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 已提交
395 396 397 398
      # Returns the version of the connected PostgreSQL server.
      def postgresql_version
        @connection.server_version
      end
399

D
Derek Prior 已提交
400
      protected
401

402
        # See http://www.postgresql.org/docs/current/static/errcodes-appendix.html
403
        VALUE_LIMIT_VIOLATION = "22001"
404 405 406
        FOREIGN_KEY_VIOLATION = "23503"
        UNIQUE_VIOLATION      = "23505"

407
        def translate_exception(exception, message)
408 409
          return exception unless exception.respond_to?(:result)

410
          case exception.result.try(:error_field, PGresult::PG_DIAG_SQLSTATE)
411
          when UNIQUE_VIOLATION
412
            RecordNotUnique.new(message)
413
          when FOREIGN_KEY_VIOLATION
414
            InvalidForeignKey.new(message)
415 416
          when VALUE_LIMIT_VIOLATION
            ValueTooLong.new(message)
417 418 419 420 421
          else
            super
          end
        end

D
Initial  
David Heinemeier Hansson 已提交
422
      private
423

424
        def get_oid_type(oid, fmod, column_name, sql_type = '') # :nodoc:
425
          if !type_map.key?(oid)
426
            load_additional_types(type_map, [oid])
427 428
          end

429 430 431 432 433 434
          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
          }
435 436
        end

437
        def initialize_type_map(m) # :nodoc:
438 439 440
          register_class_with_limit m, 'int2', Type::Integer
          register_class_with_limit m, 'int4', Type::Integer
          register_class_with_limit m, 'int8', Type::Integer
441
          m.alias_type 'oid', 'int2'
442
          m.register_type 'float4', Type::Float.new
443 444
          m.alias_type 'float8', 'float4'
          m.register_type 'text', Type::Text.new
S
Sean Griffin 已提交
445
          register_class_with_limit m, 'varchar', Type::String
446 447 448 449
          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 已提交
450 451
          register_class_with_limit m, 'bit', OID::Bit
          register_class_with_limit m, 'varbit', OID::BitVarying
452
          m.alias_type 'timestamptz', 'timestamp'
453
          m.register_type 'date', Type::Date.new
454 455 456 457 458

          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
459
          m.register_type 'json', OID::Json.new
460
          m.register_type 'jsonb', OID::Jsonb.new
461 462 463
          m.register_type 'cidr', OID::Cidr.new
          m.register_type 'inet', OID::Inet.new
          m.register_type 'uuid', OID::Uuid.new
464
          m.register_type 'xml', OID::Xml.new
465 466 467 468
          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)
469 470 471 472 473 474
          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)
475 476 477 478

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

479 480
          register_class_with_precision m, 'time', Type::Time
          register_class_with_precision m, 'timestamp', OID::DateTime
S
Sean Griffin 已提交
481

482
          m.register_type 'numeric' do |_, fmod, sql_type|
S
Sean Griffin 已提交
483
            precision = extract_precision(sql_type)
S
Sean Griffin 已提交
484
            scale = extract_scale(sql_type)
S
Sean Griffin 已提交
485

486 487 488 489 490 491 492 493
            # 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?
494 495
              # FIXME: Remove this class, and the second argument to
              # lookups on PG
496 497 498 499
              Type::DecimalWithoutScale.new(precision: precision)
            else
              OID::Decimal.new(precision: precision, scale: scale)
            end
S
Sean Griffin 已提交
500 501
          end

502 503 504
          load_additional_types(m)
        end

S
Sean Griffin 已提交
505 506
        def extract_limit(sql_type) # :nodoc:
          case sql_type
507 508 509 510 511 512
          when /^bigint/i, /^int8/i
            8
          when /^smallint/i
            2
          else
            super
S
Sean Griffin 已提交
513 514 515
          end
        end

516
        # Extracts the value from a PostgreSQL column default definition.
S
Sean Griffin 已提交
517
        def extract_value_from_default(default) # :nodoc:
518
          case default
519
            # Quoted types
520 521 522 523 524 525 526
            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
527
            # Boolean types
B
brainopia 已提交
528
            when 'true'.freeze, 'false'.freeze
529
              default
530
            # Numeric types
531
            when /\A\(?(-?\d+(\.\d*)?)\)?(::bigint)?\z/
532 533 534 535 536 537 538 539 540 541 542
              $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

543
        def extract_default_function(default_value, default) # :nodoc:
544 545 546
          default if has_default_function?(default_value, default)
        end

547
        def has_default_function?(default_value, default) # :nodoc:
548
          !default_value && (%r{\w+\(.*\)|\(.*\)::\w+} === default)
549 550
        end

551
        def load_additional_types(type_map, oids = nil) # :nodoc:
552 553
          initializer = OID::TypeMapInitializer.new(type_map)

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

          if oids
            query += "WHERE t.oid::integer IN (%s)" % oids.join(", ")
569 570
          else
            query += initializer.query_conditions_for_initial_load(type_map)
571 572
          end

573 574 575
          execute_and_clear(query, 'SCHEMA', []) do |records|
            initializer.run(records)
          end
576 577
        end

578
        FEATURE_NOT_SUPPORTED = "0A000" #:nodoc:
579

580 581 582 583 584 585 586 587
        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
588 589 590 591 592
          ret = yield result
          result.clear
          ret
        end

593
        def exec_no_cache(sql, name, binds)
594 595
          type_casted_binds = binds.map { |attr| type_cast(attr.value_for_database) }
          log(sql, name, binds) { @connection.async_exec(sql, type_casted_binds) }
596
        end
597

598
        def exec_cache(sql, name, binds)
599
          stmt_key = prepare_statement(sql)
S
Sean Griffin 已提交
600
          type_casted_binds = binds.map { |attr| type_cast(attr.value_for_database) }
601

S
Sean Griffin 已提交
602 603
          log(sql, name, binds, stmt_key) do
            @connection.exec_prepared(stmt_key, type_casted_binds)
604 605
          end
        rescue ActiveRecord::StatementInvalid => e
606
          raise unless is_cached_plan_failure?(e)
607

608 609 610 611 612 613
          # 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
614 615
            @statements.delete sql_key(sql)
            retry
616 617 618
          end
        end

619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640
        # 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

641 642 643 644 645 646 647 648 649 650
        # 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)
651
          unless @statements.key? sql_key
652
            nextkey = @statements.next_key
653 654 655
            begin
              @connection.prepare nextkey, sql
            rescue => e
A
Aaron Patterson 已提交
656
              raise translate_exception_class(e, sql)
657
            end
658 659
            # Clear the queue
            @connection.get_last_result
660
            @statements[sql_key] = nextkey
661
          end
662
          @statements[sql_key]
663
        end
664

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

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

687
          # Use standard-conforming strings so we don't have to do the E'...' dance.
688 689
          set_standard_conforming_strings

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

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

712
        # Returns the current ID of a table's sequence.
713
        def last_insert_id_result(sequence_name) # :nodoc:
714
          exec_query("SELECT currval('#{sequence_name}')", 'SQL')
D
Initial  
David Heinemeier Hansson 已提交
715 716
        end

717
        # Returns the list of a table's column names, data types, and default values.
718 719
        #
        # The underlying query is roughly:
720
        #  SELECT column.name, column.type, default.value, column.comment
721 722 723 724 725 726 727 728 729 730 731 732 733 734
        #    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
735
        def column_definitions(table_name) # :nodoc:
736
          query(<<-end_sql, 'SCHEMA')
737
              SELECT a.attname, format_type(a.atttypid, a.atttypmod),
738 739
                     pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod,
             (SELECT c.collname FROM pg_collation c, pg_type t
740 741
               WHERE c.oid = a.attcollation AND t.oid = a.atttypid AND a.attcollation <> t.typcollation),
                     col_description(a.attrelid, a.attnum) AS comment
742 743 744 745 746
                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
747
          end_sql
D
Initial  
David Heinemeier Hansson 已提交
748
        end
749

750
        def extract_table_ref_from_insert_sql(sql) # :nodoc:
751
          sql[/into\s("[A-Za-z0-9_."\[\]\s]+"|[A-Za-z0-9_."\[\]]+)\s*/im]
752 753 754
          $1.strip if $1
        end

755 756
        def create_table_definition(*args) # :nodoc:
          PostgreSQL::TableDefinition.new(*args)
757
        end
S
Sean Griffin 已提交
758 759 760 761 762 763 764 765 766 767 768 769 770 771

        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|
772
              result.getvalue(0, 0)
S
Sean Griffin 已提交
773 774 775
            end
          end
        end
776

777 778 779 780 781 782 783 784 785
        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

786 787 788 789 790 791 792 793 794 795
        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,
          }
796 797
          known_coder_types = coders_by_name.keys.map { |n| quote(n) }
          query = <<-SQL % known_coder_types.join(", ")
798
            SELECT t.oid, t.typname
799
            FROM pg_type as t
800
            WHERE t.typname IN (%s)
801 802 803
          SQL
          coders = execute_and_clear(query, "SCHEMA", []) do |result|
            result
804
              .map { |row| construct_coder(row, coders_by_name[row['typname']]) }
805 806 807 808 809 810 811 812 813 814
              .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
815
          coder_class.new(oid: row['oid'].to_i, name: row['typname'])
816
        end
817 818 819 820 821 822 823

        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 已提交
824
        ActiveRecord::Type.register(:datetime, OID::DateTime, adapter: :postgresql)
825 826 827 828
        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)
829
        ActiveRecord::Type.register(:json, OID::Json, adapter: :postgresql)
830 831
        ActiveRecord::Type.register(:jsonb, OID::Jsonb, adapter: :postgresql)
        ActiveRecord::Type.register(:money, OID::Money, adapter: :postgresql)
832
        ActiveRecord::Type.register(:point, OID::Rails51Point, adapter: :postgresql)
833
        ActiveRecord::Type.register(:legacy_point, OID::Point, adapter: :postgresql)
834 835 836
        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 已提交
837 838 839
    end
  end
end