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