aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-04-09 21:39:43 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-04-09 21:39:43 +0900
commit249f2f337785e5aab738c4117014d992873369ca (patch)
treea79ae1c209a52793632f18b17e6781d918925f14 /activerecord
parent17418ba7d19aee9893d42024792268db2e117887 (diff)
downloadrails-249f2f337785e5aab738c4117014d992873369ca.tar.gz
rails-249f2f337785e5aab738c4117014d992873369ca.tar.bz2
rails-249f2f337785e5aab738c4117014d992873369ca.zip
`get_database_version` is not public API [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
index f8c2e48808..46f5a1e9e8 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
@@ -422,7 +422,7 @@ module ActiveRecord
}
# Returns the version of the connected PostgreSQL server.
- def get_database_version
+ def get_database_version # :nodoc:
@connection.server_version
end