| 333 | } |
| 334 | |
| 335 | bool isMapImplicitFileNameOfSpecialMapName(const String file_name, const String map_col) |
| 336 | { |
| 337 | if (isMapBaseFile(file_name)) |
| 338 | return startsWith(file_name, genMapBaseFilePrefix(map_col)); |
| 339 | else |
| 340 | return startsWith(file_name, genMapKeyFilePrefix(map_col)); |
| 341 | } |
| 342 | |
| 343 | bool isMapImplicitDataFileNameOfSpecialMapName(const String & file_name, const String map_col) |
| 344 | { |
no test coverage detected