Module: PgParty::Adapter::AbstractMethods
- Defined in:
- lib/pg_party/adapter/abstract_methods.rb
Instance Method Summary collapse
- #attach_list_partition ⇒ Object
- #attach_range_partition ⇒ Object
- #create_list_partition ⇒ Object
- #create_list_partition_of ⇒ Object
- #create_range_partition ⇒ Object
- #create_range_partition_of ⇒ Object
- #create_table_like ⇒ Object
- #detach_partition ⇒ Object
Instance Method Details
#attach_list_partition ⇒ Object
30 31 32 |
# File 'lib/pg_party/adapter/abstract_methods.rb', line 30 def attach_list_partition(*) raise "#attach_list_partition is not implemented" end |
#attach_range_partition ⇒ Object
26 27 28 |
# File 'lib/pg_party/adapter/abstract_methods.rb', line 26 def attach_range_partition(*) raise "#attach_range_partition is not implemented" end |
#create_list_partition ⇒ Object
10 11 12 |
# 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 ⇒ Object
18 19 20 |
# File 'lib/pg_party/adapter/abstract_methods.rb', line 18 def create_list_partition_of(*) raise "#create_list_partition_of is not implemented" end |
#create_range_partition ⇒ Object
6 7 8 |
# 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 ⇒ Object
14 15 16 |
# File 'lib/pg_party/adapter/abstract_methods.rb', line 14 def create_range_partition_of(*) raise "#create_range_partition_of is not implemented" end |
#create_table_like ⇒ Object
22 23 24 |
# File 'lib/pg_party/adapter/abstract_methods.rb', line 22 def create_table_like(*) raise "#create_table_like is not implemented" end |
#detach_partition ⇒ Object
34 35 36 |
# File 'lib/pg_party/adapter/abstract_methods.rb', line 34 def detach_partition(*) raise "#detach_partition is not implemented" end |