| 119 | } |
| 120 | |
| 121 | std::string extractTableName(const std::string & nested_name) |
| 122 | { |
| 123 | auto split = splitName(nested_name); |
| 124 | return split.first; |
| 125 | } |
| 126 | |
| 127 | |
| 128 | ColumnWithTypeAndName unwrapNullableTuple(const ColumnWithTypeAndName & column) |
no test coverage detected