| 30 | { |
| 31 | |
| 32 | std::string concatenateName(const std::string & nested_table_name, const std::string & nested_field_name) |
| 33 | { |
| 34 | if (nested_table_name.empty()) |
| 35 | return nested_field_name; |
| 36 | |
| 37 | if (nested_field_name.empty()) |
| 38 | return nested_table_name; |
| 39 | |
| 40 | return nested_table_name + "." + nested_field_name; |
| 41 | } |
| 42 | |
| 43 | |
| 44 | /** Name can be treated as compound if it contains dot (.) in the middle. |
no test coverage detected