Merge pull request #62648 from qgis/backport-62593-to-release-3_44

[Backport release-3_44] Fix missing attribute "connection" in VLayerConnector during init
This commit is contained in:
Alexander Bruy 2025-07-23 11:39:27 +01:00 committed by GitHub
commit 0bb9d903ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -112,6 +112,8 @@ class VLayerRegistry:
class VLayerConnector(DBConnector):
def __init__(self, uri):
super().__init__(uri)
self.mapSridToName = {}
def _execute(self, cursor, sql):