From 4f20f50ea316a1a87f7fd82db2153b98ad18724e Mon Sep 17 00:00:00 2001 From: Alessandro Pasotti Date: Fri, 11 Jan 2019 10:36:54 +0100 Subject: [PATCH] Update python/plugins/db_manager/db_plugins/postgis/connector.py Co-Authored-By: Ailurupoda --- python/plugins/db_manager/db_plugins/postgis/connector.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/plugins/db_manager/db_plugins/postgis/connector.py b/python/plugins/db_manager/db_plugins/postgis/connector.py index 7f6bac8e9e8..f0e6a080ee5 100644 --- a/python/plugins/db_manager/db_plugins/postgis/connector.py +++ b/python/plugins/db_manager/db_plugins/postgis/connector.py @@ -897,7 +897,6 @@ class PostGisDBConnector(DBConnector): # comment the column if comment is not None: - # Add the comment on the field schema, tablename = self.getSchemaTableName(table) sql = u"COMMENT ON COLUMN %s.%s.%s is '%s'" % (schema, tablename, column, comment) self._execute(c, sql)