class Scenic::Adapters::Mysql::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/mysql/errors.rb, line 19
def initialize
  super("Concurrent refreshes not yet supported for MySQL")
end