| 65 | } |
| 66 | |
| 67 | bool ColumnStringIO::copy(const AbstractColumn* other) { |
| 68 | if (other->columnMode() != AbstractColumn::ColumnMode::Text) |
| 69 | return false; |
| 70 | m_owner->d->inputFilter()->input(0, other); |
| 71 | m_owner->copy(m_owner->d->inputFilter()->output(0)); |
| 72 | m_owner->d->inputFilter()->input(0, this); |
| 73 | return true; |
| 74 | } |
| 75 | |
| 76 | bool ColumnStringIO::copy(const AbstractColumn* source, int source_start, int dest_start, int num_rows) { |
| 77 | if (source->columnMode() != AbstractColumn::ColumnMode::Text) |
no test coverage detected