| 206 | } |
| 207 | |
| 208 | bool ClientContext::isInMemory() const { |
| 209 | if (remoteDatabase != nullptr) { |
| 210 | // If we are connected to a remote database, we assume it is not in memory. |
| 211 | return false; |
| 212 | } |
| 213 | return localDatabase->storageManager->isInMemory(); |
| 214 | } |
| 215 | |
| 216 | void ClientContext::addDBDirToFileSearchPath(const std::string& dbPath) { |
| 217 | // Skip remote paths (e.g. s3://, https://) |
no outgoing calls
no test coverage detected