module PgParty::Adapter::AbstractMethods

Public Instance Methods

add_index_on_all_partitions(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 66
def add_index_on_all_partitions(*)
  raise "#add_index_on_all_partitions is not implemented"
end
attach_default_partition(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 50
def attach_default_partition(*)
  raise "#attach_default_partition is not implemented"
end
attach_hash_partition(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 46
def attach_hash_partition(*)
  raise "#attach_hash_partition is not implemented"
end
attach_list_partition(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 42
def attach_list_partition(*)
  raise "#attach_list_partition is not implemented"
end
attach_range_partition(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 38
def attach_range_partition(*)
  raise "#attach_range_partition is not implemented"
end
create_default_partition_of(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 30
def create_default_partition_of(*)
  raise "#create_default_partition_of is not implemented"
end
create_hash_partition(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 14
def create_hash_partition(*)
  raise "#create_hash_partition is not implemented"
end
create_hash_partition_of(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 26
def create_hash_partition_of(*)
  raise "#create_hash_partition_of is not implemented"
end
create_list_partition(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 10
def create_list_partition(*)
  raise "#create_list_partition is not implemented"
end
create_list_partition_of(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 22
def create_list_partition_of(*)
  raise "#create_list_partition_of is not implemented"
end
create_range_partition(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 6
def create_range_partition(*)
  raise "#create_range_partition is not implemented"
end
create_range_partition_of(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 18
def create_range_partition_of(*)
  raise "#create_range_partition_of is not implemented"
end
create_table_like(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 34
def create_table_like(*)
  raise "#create_table_like is not implemented"
end
detach_partition(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 54
def detach_partition(*)
  raise "#detach_partition is not implemented"
end
parent_for_table_name(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 58
def parent_for_table_name(*)
  raise "#parent_for_table_name is not implemented"
end
partitions_for_table_name(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 62
def partitions_for_table_name(*)
  raise "#partitions_for_table_name is not implemented"
end
table_partitioned?(*) click to toggle source
# File lib/pg_party/adapter/abstract_methods.rb, line 70
def table_partitioned?(*)
  raise "#table_partitioned? is not implemented"
end