summaryrefslogtreecommitdiff
path: root/adbh.py
diff options
context:
space:
mode:
authorStephanie Marcu <stephanie.marcu@logilab.fr>2008-09-29 08:36:13 +0200
committerStephanie Marcu <stephanie.marcu@logilab.fr>2008-09-29 08:36:13 +0200
commitf5c1e0bdec77eb6580276d1465372b239d65611a (patch)
tree078348c7769ac61f86681660c6c5a24c201ef6bd /adbh.py
parentef0938b73adafcfadb3b4e4de085c38b5dd1f08c (diff)
downloadlogilab-common-f5c1e0bdec77eb6580276d1465372b239d65611a.tar.gz
merge
Diffstat (limited to 'adbh.py')
-rw-r--r--adbh.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/adbh.py b/adbh.py
index 828d870..24c3ab9 100644
--- a/adbh.py
+++ b/adbh.py
@@ -262,6 +262,7 @@ INSERT INTO %s VALUES (0);''' % (seq_name, seq_name)
cursor.execute(self.sql_create_index(table, column, unique))
def drop_index(self, cursor, table, column, unique=False):
+ print 'drop_index'
if self.index_exists(cursor, table, column, unique):
cursor.execute(self.sql_drop_index(table, column, unique))