Exception: Tablature::Adapters::Postgres::RangePartitionsNotSupportedError
- Inherits:
-
StandardError
- Object
- StandardError
- Tablature::Adapters::Postgres::RangePartitionsNotSupportedError
- Defined in:
- lib/tablature/adapters/postgres/errors.rb
Overview
Raised when a range partition operation is attempted on a database version that does not support range partitions.
Range partitions are supported on Postgres 10 or newer.
Instance Method Summary collapse
-
#initialize ⇒ RangePartitionsNotSupportedError
constructor
A new instance of RangePartitionsNotSupportedError.
Constructor Details
#initialize ⇒ RangePartitionsNotSupportedError
Returns a new instance of RangePartitionsNotSupportedError.
27 28 29 |
# File 'lib/tablature/adapters/postgres/errors.rb', line 27 def initialize super('Range partitions require Postgres 10 or newer') end |