class Tablature::Adapters::Postgres::RangePartitionsNotSupportedError

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.

Public Class Methods

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