Exception: Scenic::Adapters::Mysql::MaterializedViewsNotSupportedError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/scenic/adapters/mysql/errors.rb

Overview

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.

Direct Known Subclasses

ConcurrentRefreshesNotSupportedError

Instance Method Summary collapse

Constructor Details

#initializeMaterializedViewsNotSupportedError

Returns a new instance of MaterializedViewsNotSupportedError.



9
10
11
# File 'lib/scenic/adapters/mysql/errors.rb', line 9

def initialize
  super('Materialized views not supported in Mysql')
end