I have a few ORM mapped tables, which (pared down) look like this:
class Tag(Base):
__tablename__ = 'tags'
tag_name = Column(String, primary_key=True)
task2tag_assoc = Table('tasktags', Base.metadata,
Column('task_id', UUID, ForeignKey('tasks.task_id', ondelete='cascade'),
primary_key=True),
Column('tag_name', String, ForeignKey('tags.tag_name', ondelete='cascade'),
primary_key=True)
)
class Task(Base):
__tablename__ = 'tasks'
task_id = Column(UUID, primary_key=True)
_tags = relationship('Tag', secondary=task2tag_assoc, backref='tasks',
collection_class=set)
tags = association_proxy('_tags', 'tag_name')
def __init__(self, task_id, tags):
self.task_id = task_id
self.tags = set([tags])
With this setup, I can create a task with new tags just fine. It creates the tag
row in the tags table, and then creates the association to a new task just
fine in the tasktags table.
t = Task(task_id = uuid4(), tags=['foo', 'bar']) #this works
The problem comes when I try to create a task with a tag that already exists in
the tags table.
t2 = Task(task_oid = uuid4(), tags=['foo', 'baz']) #this will give an integrity error
It seems SQLAlchemy always tries to insert the tag into the tags table, whether or not it already exists. I'd really like it to only create the association if the tag already exists. This seems like it would be fairly normal in many-to-many situations, but I can't find anywhere in the documentation showing what I might be doing wrong.
Is there a way to get the behavior I want?
For background, I am using a postgresql 9.1 DB with the psycopg2 driver, and SQLAlchemy 0.7.9 (Python 2.7.3)
Things I am considering as a last resort: Tags are technically a primary key and nothing else, I could get away with just a task_id->tag table and no tags table. But I'd like to be able to attach metadata to the tags themselves down the road if it becomes necessary.
INSERT ... IF NOT EXISTS. That's much simpler; justINSERT INTO tablename (tagname) SELECT 'newtag' WHERE NOT EXISTS (SELECT 1 FROM tablename WHERE tagname = 'newtag');. There's still a race condition that can cause duplicate key errors, though, so you have to be prepared to handle them unless you're willing toLOCK TABLE tablename IN EXCLUSIVE MODE(serializing writes), which will do terrible things to performance. – Craig Ringer Oct 31 '12 at 2:24