erikj
unread,Dec 31, 2010, 4:51:12 AM12/31/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to migrate-users
Hi,
I believe there is a bug in ANSIColumnGenerator, line 109 :
this statement :
ix = Index(column.index_name,
column,
unique=bool(column.index_name or column.index))
will always create a unique index, even if that is not requested, I
think this should be :
ix = Index(column.index_name,
column,
unique=bool(column.unique_name or
column.unique))
Best regards,
Erik