| 121 | } |
| 122 | |
| 123 | static void exportLoadedExtensions(stringstream& ss, const ClientContext* clientContext) { |
| 124 | auto extensionCypher = extension::ExtensionManager::Get(*clientContext)->toCypher(); |
| 125 | if (!extensionCypher.empty()) { |
| 126 | ss << extensionCypher << std::endl; |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | std::string getSchemaCypher(ClientContext* clientContext) { |
| 131 | stringstream ss; |
no test coverage detected