Exception: Tablature::Adapters::Postgres::ListPartitionsNotSupportedError

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

Constructor Details

#initializeListPartitionsNotSupportedError

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