| 39 | { |
| 40 | |
| 41 | std::string concatenateName(const std::string & nested_table_name, const std::string & nested_field_name) |
| 42 | { |
| 43 | if (nested_table_name.empty()) |
| 44 | return nested_field_name; |
| 45 | |
| 46 | if (nested_field_name.empty()) |
| 47 | return nested_table_name; |
| 48 | |
| 49 | return nested_table_name + "." + nested_field_name; |
| 50 | } |
| 51 | |
| 52 | |
| 53 | /** Name can be treated as compound if it contains dot (.) in the middle. |
no test coverage detected