Exception: Scenic::Adapters::Mysql::MaterializedViewsNotSupportedError
- Inherits:
-
StandardError
- Object
- StandardError
- Scenic::Adapters::Mysql::MaterializedViewsNotSupportedError
- 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
Instance Method Summary collapse
-
#initialize ⇒ MaterializedViewsNotSupportedError
constructor
A new instance of MaterializedViewsNotSupportedError.
Constructor Details
#initialize ⇒ MaterializedViewsNotSupportedError
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 |