diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-04-09 21:39:43 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2019-04-09 21:39:43 +0900 |
commit | 249f2f337785e5aab738c4117014d992873369ca (patch) | |
tree | a79ae1c209a52793632f18b17e6781d918925f14 | |
parent | 17418ba7d19aee9893d42024792268db2e117887 (diff) | |
download | rails-249f2f337785e5aab738c4117014d992873369ca.tar.gz rails-249f2f337785e5aab738c4117014d992873369ca.tar.bz2 rails-249f2f337785e5aab738c4117014d992873369ca.zip |
`get_database_version` is not public API [ci skip]
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb | 2 |
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 |