trivial: remove debugging print

This commit is contained in:
Frédéric Péters 2021-03-13 11:05:51 +01:00
parent 30e56df41a
commit 1dc7fb5833
1 changed files with 0 additions and 1 deletions

View File

@ -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