| 15 | } |
| 16 | |
| 17 | FactorizedTableSchema::FactorizedTableSchema(const FactorizedTableSchema& other) { |
| 18 | for (auto i = 0u; i < other.columns.size(); ++i) { |
| 19 | appendColumn(other.columns[i].copy()); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | void FactorizedTableSchema::appendColumn(ColumnSchema column) { |
| 24 | numBytesForDataPerTuple += column.getNumBytes(); |