Class: Gitlab::Database::PartitioningMigrationHelpers::TableManagementHelpers::JobArguments
- Inherits:
-
Struct
- Object
- Struct
- Gitlab::Database::PartitioningMigrationHelpers::TableManagementHelpers::JobArguments
- Defined in:
- lib/gitlab/database/partitioning_migration_helpers/table_management_helpers.rb
Instance Attribute Summary collapse
-
#partitioned_table_name ⇒ Object
Returns the value of attribute partitioned_table_name.
-
#source_column ⇒ Object
Returns the value of attribute source_column.
-
#source_table_name ⇒ Object
Returns the value of attribute source_table_name.
-
#start_id ⇒ Object
Returns the value of attribute start_id.
-
#stop_id ⇒ Object
Returns the value of attribute stop_id.
Class Method Summary collapse
Instance Attribute Details
#partitioned_table_name ⇒ Object
Returns the value of attribute partitioned_table_name
18 19 20 |
# File 'lib/gitlab/database/partitioning_migration_helpers/table_management_helpers.rb', line 18 def partitioned_table_name @partitioned_table_name end |
#source_column ⇒ Object
Returns the value of attribute source_column
18 19 20 |
# File 'lib/gitlab/database/partitioning_migration_helpers/table_management_helpers.rb', line 18 def source_column @source_column end |
#source_table_name ⇒ Object
Returns the value of attribute source_table_name
18 19 20 |
# File 'lib/gitlab/database/partitioning_migration_helpers/table_management_helpers.rb', line 18 def source_table_name @source_table_name end |
#start_id ⇒ Object
Returns the value of attribute start_id
18 19 20 |
# File 'lib/gitlab/database/partitioning_migration_helpers/table_management_helpers.rb', line 18 def start_id @start_id end |
#stop_id ⇒ Object
Returns the value of attribute stop_id
18 19 20 |
# File 'lib/gitlab/database/partitioning_migration_helpers/table_management_helpers.rb', line 18 def stop_id @stop_id end |
Class Method Details
.from_array(arguments) ⇒ Object
19 20 21 |
# File 'lib/gitlab/database/partitioning_migration_helpers/table_management_helpers.rb', line 19 def self.from_array(arguments) self.new(*arguments) end |