class Scenic::Adapters::Mysql::MaterializedViewsNotSupportedError

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

Materialized views are not supported on Mysql.

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/scenic/adapters/mysql/errors.rb, line 9
def initialize
  super('Materialized views not supported in Mysql')
end