Remove mut borrow from sym table in parse schema fn

This commit is contained in:
PThorpe92 2025-04-03 20:55:59 -04:00
parent a0f71e27be
commit 6b5ec1f07b
No known key found for this signature in database
GPG key ID: 66DB3FBACBDD05CC
4 changed files with 22 additions and 20 deletions

View file

@ -54,7 +54,9 @@ impl Connection {
LimboError::ExtensionError("Error unlocking extension libraries".to_string())
})?
.push((Arc::new(lib), api_ref));
self.parse_schema_rows()?;
{
self.parse_schema_rows()?;
}
Ok(())
} else {
if !api_ptr.is_null() {