class Scenic::Adapters::Mysql::MaterializedViewsNotSupportedError

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

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/scenic/adapters/mysql/errors.rb, line 8
def initialize
  super("Materialized views not yet supported for MySQL")
end