| 1924 | } |
| 1925 | |
| 1926 | std::string GetIsMultiVersionFlag(const ColumnFamilySchema& cf_schema) { |
| 1927 | if (cf_schema.max_versions() > 1) { |
| 1928 | return "1"; |
| 1929 | } else { |
| 1930 | return "0"; |
| 1931 | } |
| 1932 | } |
| 1933 | |
| 1934 | void GetTablesCfVersionMap(const TableMetaList& table_list, |
| 1935 | const std::map<std::string, std::string>& tables_cf_map, |
no outgoing calls
no test coverage detected