Module: PgParty::Adapter::PostgreSQLMethods
- Defined in:
- lib/pg_party/adapter/postgresql_methods.rb
Instance Method Summary collapse
- #attach_list_partition(*args) ⇒ Object
- #attach_range_partition(*args) ⇒ Object
- #create_list_partition(*args, &blk) ⇒ Object
- #create_list_partition_of(*args) ⇒ Object
- #create_range_partition(*args, &blk) ⇒ Object
- #create_range_partition_of(*args) ⇒ Object
- #create_table_like(*args) ⇒ Object
- #detach_partition(*args) ⇒ Object
Instance Method Details
#attach_list_partition(*args) ⇒ Object
32 33 34 |
# File 'lib/pg_party/adapter/postgresql_methods.rb', line 32 def attach_list_partition(*args) PgParty::AdapterDecorator.new(self).attach_list_partition(*args) end |
#attach_range_partition(*args) ⇒ Object
28 29 30 |
# File 'lib/pg_party/adapter/postgresql_methods.rb', line 28 def attach_range_partition(*args) PgParty::AdapterDecorator.new(self).attach_range_partition(*args) end |
#create_list_partition(*args, &blk) ⇒ Object
12 13 14 |
# File 'lib/pg_party/adapter/postgresql_methods.rb', line 12 def create_list_partition(*args, &blk) PgParty::AdapterDecorator.new(self).create_list_partition(*args, &blk) end |
#create_list_partition_of(*args) ⇒ Object
20 21 22 |
# File 'lib/pg_party/adapter/postgresql_methods.rb', line 20 def create_list_partition_of(*args) PgParty::AdapterDecorator.new(self).create_list_partition_of(*args) end |
#create_range_partition(*args, &blk) ⇒ Object
8 9 10 |
# File 'lib/pg_party/adapter/postgresql_methods.rb', line 8 def create_range_partition(*args, &blk) PgParty::AdapterDecorator.new(self).create_range_partition(*args, &blk) end |
#create_range_partition_of(*args) ⇒ Object
16 17 18 |
# File 'lib/pg_party/adapter/postgresql_methods.rb', line 16 def create_range_partition_of(*args) PgParty::AdapterDecorator.new(self).create_range_partition_of(*args) end |
#create_table_like(*args) ⇒ Object
24 25 26 |
# File 'lib/pg_party/adapter/postgresql_methods.rb', line 24 def create_table_like(*args) PgParty::AdapterDecorator.new(self).create_table_like(*args) end |
#detach_partition(*args) ⇒ Object
36 37 38 |
# File 'lib/pg_party/adapter/postgresql_methods.rb', line 36 def detach_partition(*args) PgParty::AdapterDecorator.new(self).detach_partition(*args) end |