class Scenic::Adapters::Postgres::ConcurrentRefreshesNotSupportedError

Raised when attempting a concurrent materialized view refresh on a database version that does not support that.

Concurrent materialized view refreshes are supported on Postgres 9.4 or newer.

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/scenic/adapters/postgres/errors.rb, line 20
def initialize
  super("Concurrent materialized view refreshes require Postgres 9.4 or newer")
end