Exception: Tablature::Adapters::Postgres::RangePartitionsNotSupportedError

Inherits:
StandardError
  • Object
show all
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

Constructor Details

#initializeRangePartitionsNotSupportedError

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