Lines Matching refs:new_table_properties

234   auto new_table_properties = new TableProperties();  in ReadProperties()  local
237 {TablePropertiesNames::kDataSize, &new_table_properties->data_size}, in ReadProperties()
238 {TablePropertiesNames::kIndexSize, &new_table_properties->index_size}, in ReadProperties()
240 &new_table_properties->index_partitions}, in ReadProperties()
242 &new_table_properties->top_level_index_size}, in ReadProperties()
244 &new_table_properties->index_key_is_user_key}, in ReadProperties()
246 &new_table_properties->index_value_is_delta_encoded}, in ReadProperties()
247 {TablePropertiesNames::kFilterSize, &new_table_properties->filter_size}, in ReadProperties()
248 {TablePropertiesNames::kRawKeySize, &new_table_properties->raw_key_size}, in ReadProperties()
250 &new_table_properties->raw_value_size}, in ReadProperties()
252 &new_table_properties->num_data_blocks}, in ReadProperties()
253 {TablePropertiesNames::kNumEntries, &new_table_properties->num_entries}, in ReadProperties()
255 &new_table_properties->num_deletions}, in ReadProperties()
257 &new_table_properties->num_merge_operands}, in ReadProperties()
259 &new_table_properties->num_range_deletions}, in ReadProperties()
261 &new_table_properties->format_version}, in ReadProperties()
263 &new_table_properties->fixed_key_len}, in ReadProperties()
265 &new_table_properties->column_family_id}, in ReadProperties()
267 &new_table_properties->creation_time}, in ReadProperties()
269 &new_table_properties->oldest_key_time}, in ReadProperties()
271 &new_table_properties->file_creation_time}, in ReadProperties()
293 new_table_properties->properties_offsets.insert( in ReadProperties()
300 new_table_properties->user_collected_properties.insert( in ReadProperties()
315 new_table_properties->filter_policy_name = raw_val.ToString(); in ReadProperties()
317 new_table_properties->column_family_name = raw_val.ToString(); in ReadProperties()
319 new_table_properties->comparator_name = raw_val.ToString(); in ReadProperties()
321 new_table_properties->merge_operator_name = raw_val.ToString(); in ReadProperties()
323 new_table_properties->prefix_extractor_name = raw_val.ToString(); in ReadProperties()
325 new_table_properties->property_collectors_names = raw_val.ToString(); in ReadProperties()
327 new_table_properties->compression_name = raw_val.ToString(); in ReadProperties()
329 new_table_properties->compression_options = raw_val.ToString(); in ReadProperties()
332 new_table_properties->user_collected_properties.insert( in ReadProperties()
337 *table_properties = new_table_properties; in ReadProperties()
350 delete new_table_properties; in ReadProperties()