关于这个问题,我试图覆盖返回 PostgreSQL 版本的postgresql_version
方法ActiveRecord::ConnectionAdapters::PostgreSQLAdapter
:
module ActiveRecord
module ConnectionAdapters
class PostgreSQLAdapter < AbstractAdapter
protected
# Returns the version of the connected PostgreSQL server.
def postgresql_version
80200
end
end
end
end
但是没有应用补丁。我在 config/initializer 中尝试过,并在 /lib 文件中要求它。帮助?