supports_insert_with_returning? caches false result also

This commit is contained in:
Jeremy Kemper 2008-06-11 09:06:36 -07:00
parent d0b3685a0e
commit 23df8befcd
1 changed files with 6 additions and 3 deletions

View File

@ -324,9 +324,12 @@ module ActiveRecord
end
def supports_insert_with_returning?
@supports_insert_with_returning ||=
@connection.respond_to?(:server_version) &&
@connection.server_version >= 80200
unless defined? @supports_insert_with_returning
@supports_insert_with_returning =
@connection.respond_to?(:server_version) &&
@connection.server_version >= 80200
end
@supports_insert_with_returning
end
# Returns the configured supported identifier length supported by PostgreSQL,