From 1dc7fb5833e5545c069455217c7dc3bd2dbbe956 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 13 Mar 2021 11:05:51 +0100 Subject: [PATCH] trivial: remove debugging print --- wcs_olap/feeder.py | 1 - 1 file changed, 1 deletion(-) diff --git a/wcs_olap/feeder.py b/wcs_olap/feeder.py index ddbdac6..d832adc 100644 --- a/wcs_olap/feeder.py +++ b/wcs_olap/feeder.py @@ -355,7 +355,6 @@ class WcsOlapFeeder(object): for table_name, constraint_name in self.cur.fetchall(): # drop of PK constraints can have effects on FK constraint on other tables. with ignore_undefined_object_or_table(): - print('Dropping s', constraint_name) self.ex('ALTER TABLE %s.%s DROP CONSTRAINT IF EXISTS %s CASCADE' % (quote(schema), quote(table_name), quote(constraint_name))) # remove others