Exception: InstDataShipper::DataSources::Base::MismatchingRowCounts
- Inherits:
-
StandardError
- Object
- StandardError
- InstDataShipper::DataSources::Base::MismatchingRowCounts
- Defined in:
- lib/inst_data_shipper/data_sources/base.rb
Instance Method Summary collapse
-
#initialize(table_def = {}, expected_row_count = 0, processed_row_count = 0) ⇒ MismatchingRowCounts
constructor
A new instance of MismatchingRowCounts.
Constructor Details
#initialize(table_def = {}, expected_row_count = 0, processed_row_count = 0) ⇒ MismatchingRowCounts
Returns a new instance of MismatchingRowCounts.
50 51 52 53 |
# File 'lib/inst_data_shipper/data_sources/base.rb', line 50 def initialize(table_def={}, expected_row_count=0, processed_row_count=0) = "#{table_def[:warehouse_name]} expected #{expected_row_count} rows, processed #{processed_row_count} rows in local table." super() end |