class Scenic::Adapters::Postgres::MaterializedViewsNotSupportedError

Raised when a materialized view operation is attempted on a database version that does not support materialized views.

Materialized views are supported on Postgres 9.3 or newer.

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/scenic/adapters/postgres/errors.rb, line 9
def initialize
  super("Materialized views require Postgres 9.3 or newer")
end