class Tablature::Adapters::Postgres::ListPartitionsNotSupportedError

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.

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/tablature/adapters/postgres/errors.rb, line 9
def initialize
  super('List partitions require Postgres 10 or newer')
end