From 9f62344d9552f0a58e4aa43ca6f1a7fec273a04e Mon Sep 17 00:00:00 2001 From: Yves Senn Date: Thu, 10 Apr 2014 20:39:21 +0200 Subject: PostgreSQL, warn once per connection per missing OID. Closes #14275. [Yves Senn & Matthew Draper] --- .../lib/active_record/connection_adapters/postgresql_adapter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activerecord/lib') diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb index 207e1c4fed..0485093123 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb @@ -565,8 +565,8 @@ module ActiveRecord end type_map.fetch(oid, fmod) { - warn "unknown OID #{oid}: failed to recognize type of #{column_name}" - OID::Identity.new + warn "unknown OID #{oid}: failed to recognize type of '#{column_name}'. It will be treated as String." + type_map[oid] = OID::Identity.new } end -- cgit v1.2.3