We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d74864b commit 8987bb5Copy full SHA for 8987bb5
python/plugins/db_manager/db_plugins/postgis/plugin.py
@@ -304,6 +304,7 @@ def gdalUri(self, uri=None):
304
if not uri:
305
uri = self.database().uri()
306
# NOTE: service-only URIs won't work with GDAL up to 2.2.x
307
+ # See: https://issues.qgis.org/issues/16626
308
service = (u'service=%s' % uri.service()) if uri.service() else ''
309
schema = (u'schema=%s' % self.schemaName()) if self.schemaName() else ''
310
dbname = (u'dbname=%s' % uri.database()) if uri.database() else ''
0 commit comments