| 200 | |
| 201 | |
| 202 | AccessEntityPtr tryReadEntityFile(const String & file_path, Poco::Logger & log) |
| 203 | { |
| 204 | try |
| 205 | { |
| 206 | return readEntityFile(file_path); |
| 207 | } |
| 208 | catch (...) |
| 209 | { |
| 210 | tryLogCurrentException(&log, "Could not parse " + file_path); |
| 211 | return nullptr; |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | |
| 216 | /// Writes ATTACH queries for building a specified access entity to a file. |
no test coverage detected