| 249 | } |
| 250 | |
| 251 | void Schema::AddFileSplitGeneratorSpecs( |
| 252 | const TableName& table_name, const std::vector<FileSplitGeneratorSpec>& specs) { |
| 253 | Table* table = &tables_[table_name]; |
| 254 | table->specs.insert(table->specs.end(), specs.begin(), specs.end()); |
| 255 | } |
| 256 | |
| 257 | void Schema::AddFileSplitGeneratorDefaultSpecs(const TableName& table_name, int num) { |
| 258 | Table* table = &tables_[table_name]; |