Updates internal values so that they are fitting to the data stored in storage Should get deprecated! Really? */
| 565 | Should get deprecated! Really? |
| 566 | */ |
| 567 | void CsvTable::updateInternals() { |
| 568 | #ifdef DEBUG |
| 569 | dumpStatus("updateInternals"); |
| 570 | #endif |
| 571 | // Header anpassen |
| 572 | if( (table_index_t) headerRow->size() != storage.columns() ) { |
| 573 | #ifdef DEBUG |
| 574 | std::cerr << "Adapting header row length!" << std::endl; |
| 575 | #endif |
| 576 | headerRow->resize(storage.columns()); |
| 577 | } |
| 578 | } |
| 579 | |
| 580 | |
| 581 |
no test coverage detected