[sqlalchemy] Re: Deleting records in a MapperExtension on after_delete

2008-11-27 Thread az
and what that shoud do? attached is a changed version... do see if 
that's what u want (it's sqlite, with plain session). 
the only real change is cascade=all,delete-orphan on house.owners... 
but i just unintentionaly guessed it.


On Thursday 27 November 2008 09:51:38 David Harrison wrote:
 So this is actually a follow on from a question I posed quite a
 while back now:

 http://groups.google.com/group/sqlalchemy/browse_thread/thread/4530
dd3f5585/eb4638599b02577d?lnk=gstq=Postgres+cascade+error#eb463
8599b02577d

 So my approach to solving this problem was to use a
 MapperExtension, but it's giving me the error that I originally
 posted in this thread.

 I'm re-posting my previous code here for easy reference and testing
 by others (with one tiny mod to get rid of the optionparser code I
 had):

 ---

 #!/usr/bin/env python

 import sys
 import sqlalchemy as sa
 import sqlalchemy.orm


 session = sa.orm.scoped_session(
 sa.orm.sessionmaker(autoflush=False, transactional=True)
 )
 mapper = session.mapper
 metadata = sa.MetaData()


 houseTable = sa.Table(
 'house',
 metadata,
 sa.Column('id', sa.Integer, primary_key=True),
 )

 ownerTable = sa.Table(
 'owner',
 metadata,
 sa.Column('id', sa.Integer, primary_key=True),
 sa.Column('house_id', sa.Integer, sa.ForeignKey('house.id')),
 )

 dogTable = sa.Table(
 'dog',
 metadata,
 sa.Column('id', sa.Integer, primary_key=True),
 sa.Column('house_id', sa.Integer, sa.ForeignKey('house.id')),
 )

 friendshipTable = sa.Table(
 'friendship',
 metadata,
 sa.Column('id', sa.Integer, primary_key=True),
 sa.Column('owner_id', sa.Integer, sa.ForeignKey('owner.id')),
 sa.Column('dog_id', sa.Integer, sa.ForeignKey('dog.id')),
 )


 class House(object): pass
 class Owner(object): pass
 class Dog(object): pass
 class Friendship(object): pass


 mapper(
 House,
 houseTable,
 properties = {
 owners : sa.orm.relation(
 Owner, cascade=delete-orphan
 ),
 dogs : sa.orm.relation(
 Dog, cascade=delete-orphan
 ),
 },
 )
 mapper(
 Owner,
 ownerTable,
 properties = {
 friendships : sa.orm.relation(
 Friendship, cascade=delete
 ),
 },
 )

 mapper(
 Friendship,
 friendshipTable,
 properties = {
 dog : sa.orm.relation(
 Dog, uselist=False, cascade=all, delete-orphan
 ),
 },
 )

 mapper(Dog, dogTable)


 if __name__ == __main__:

 engine = sa.create_engine(
 postgres://test:[EMAIL PROTECTED]/test,
 strategy=threadlocal,
 echo=True
 )
 metadata.bind = engine
 session.configure(bind=engine)

 print Creating tables
 metadata.create_all()

 print Seeding database
 for i in range(10): House()
 session.flush()

 for house in sa.orm.Query(House).all():
 for i in range(2):
 owner = Owner()
 house.owners.append(owner)
 session.flush()

 for house in sa.orm.Query(House).all():
 for i in range(2):
 dog = Dog()
 house.dogs.append(dog)
 session.flush()

 for owner in sa.orm.Query(Owner).all():
 for dog in sa.orm.Query(Dog).filter_by(house_id =
 owner.house_id).all(): friendship = Friendship()
 friendship.dog = dog
 owner.friendships.append(friendship)
 session.commit()

 owner = sa.orm.Query(Owner).first()
 for f in owner.friendships:
 print FRIENDSHIP: %s  || DOG: %s % (f.id, f.dog.id)

 print Deleting owner
 session.delete(owner)
 session.flush()
 session.commit()

 2008/11/27 David Harrison [EMAIL PROTECTED]:
  Sorry, I should probably have mentioned that C isn't the only
  object that maps A, so a cascade doesn't work.
 
  2008/11/27  [EMAIL PROTECTED]:
  i'm not expert on these, but i think u need something like
  cascade='all' on your relation, _instead_ of the mapperExt.
  check the docs about possible settings. the mapperExt fires too
  late and the session flush-plan gets surprised.
 
  On Thursday 27 November 2008 08:15:04 David Harrison wrote:
  Hey all,
 
  I've got a situation where I have 2 object A and B, and a third
  object C that has a foreign key reference to both A and B.  I
  can have many C's that map to the same A.
 
  Now I've implemented a MapperExtension for C that has an
  after_delete function, and that function checks to see if the A
  that the deleted C was mapped to has any other mappings, and if
  there are no other mappings left, deletes the A.
 
  Now this works fine if I'm just deleting C's directly, however
  as soon as this happens during a cascade delete from some other
  object D that happens to have a mapping to C I get the below
  error - I'm assuming this is because sqlalchemy has a test
  condition that doesn't see my mapper coming, and freaks out
  when extra rows get nuked.
 
  ConcurrentModificationError: Deleted 

[sqlalchemy] Re: Deleting records in a MapperExtension on after_delete

2008-11-27 Thread David Harrison

Postgres is the intended deployment platform so it really does need to
work on Postgres, that said last time I dug into this I found that
SQLite is less strict on enforcing key constraints where Postgres
isn't, so technically Postgres is right to complain.

2008/11/27  [EMAIL PROTECTED]:
 and what that shoud do? attached is a changed version... do see if
 that's what u want (it's sqlite, with plain session).
 the only real change is cascade=all,delete-orphan on house.owners...
 but i just unintentionaly guessed it.


 On Thursday 27 November 2008 09:51:38 David Harrison wrote:
 So this is actually a follow on from a question I posed quite a
 while back now:

 http://groups.google.com/group/sqlalchemy/browse_thread/thread/4530
dd3f5585/eb4638599b02577d?lnk=gstq=Postgres+cascade+error#eb463
8599b02577d

 So my approach to solving this problem was to use a
 MapperExtension, but it's giving me the error that I originally
 posted in this thread.

 I'm re-posting my previous code here for easy reference and testing
 by others (with one tiny mod to get rid of the optionparser code I
 had):

 ---

 #!/usr/bin/env python

 import sys
 import sqlalchemy as sa
 import sqlalchemy.orm


 session = sa.orm.scoped_session(
 sa.orm.sessionmaker(autoflush=False, transactional=True)
 )
 mapper = session.mapper
 metadata = sa.MetaData()


 houseTable = sa.Table(
 'house',
 metadata,
 sa.Column('id', sa.Integer, primary_key=True),
 )

 ownerTable = sa.Table(
 'owner',
 metadata,
 sa.Column('id', sa.Integer, primary_key=True),
 sa.Column('house_id', sa.Integer, sa.ForeignKey('house.id')),
 )

 dogTable = sa.Table(
 'dog',
 metadata,
 sa.Column('id', sa.Integer, primary_key=True),
 sa.Column('house_id', sa.Integer, sa.ForeignKey('house.id')),
 )

 friendshipTable = sa.Table(
 'friendship',
 metadata,
 sa.Column('id', sa.Integer, primary_key=True),
 sa.Column('owner_id', sa.Integer, sa.ForeignKey('owner.id')),
 sa.Column('dog_id', sa.Integer, sa.ForeignKey('dog.id')),
 )


 class House(object): pass
 class Owner(object): pass
 class Dog(object): pass
 class Friendship(object): pass


 mapper(
 House,
 houseTable,
 properties = {
 owners : sa.orm.relation(
 Owner, cascade=delete-orphan
 ),
 dogs : sa.orm.relation(
 Dog, cascade=delete-orphan
 ),
 },
 )
 mapper(
 Owner,
 ownerTable,
 properties = {
 friendships : sa.orm.relation(
 Friendship, cascade=delete
 ),
 },
 )

 mapper(
 Friendship,
 friendshipTable,
 properties = {
 dog : sa.orm.relation(
 Dog, uselist=False, cascade=all, delete-orphan
 ),
 },
 )

 mapper(Dog, dogTable)


 if __name__ == __main__:

 engine = sa.create_engine(
 postgres://test:[EMAIL PROTECTED]/test,
 strategy=threadlocal,
 echo=True
 )
 metadata.bind = engine
 session.configure(bind=engine)

 print Creating tables
 metadata.create_all()

 print Seeding database
 for i in range(10): House()
 session.flush()

 for house in sa.orm.Query(House).all():
 for i in range(2):
 owner = Owner()
 house.owners.append(owner)
 session.flush()

 for house in sa.orm.Query(House).all():
 for i in range(2):
 dog = Dog()
 house.dogs.append(dog)
 session.flush()

 for owner in sa.orm.Query(Owner).all():
 for dog in sa.orm.Query(Dog).filter_by(house_id =
 owner.house_id).all(): friendship = Friendship()
 friendship.dog = dog
 owner.friendships.append(friendship)
 session.commit()

 owner = sa.orm.Query(Owner).first()
 for f in owner.friendships:
 print FRIENDSHIP: %s  || DOG: %s % (f.id, f.dog.id)

 print Deleting owner
 session.delete(owner)
 session.flush()
 session.commit()

 2008/11/27 David Harrison [EMAIL PROTECTED]:
  Sorry, I should probably have mentioned that C isn't the only
  object that maps A, so a cascade doesn't work.
 
  2008/11/27  [EMAIL PROTECTED]:
  i'm not expert on these, but i think u need something like
  cascade='all' on your relation, _instead_ of the mapperExt.
  check the docs about possible settings. the mapperExt fires too
  late and the session flush-plan gets surprised.
 
  On Thursday 27 November 2008 08:15:04 David Harrison wrote:
  Hey all,
 
  I've got a situation where I have 2 object A and B, and a third
  object C that has a foreign key reference to both A and B.  I
  can have many C's that map to the same A.
 
  Now I've implemented a MapperExtension for C that has an
  after_delete function, and that function checks to see if the A
  that the deleted C was mapped to has any other mappings, and if
  there are no other mappings left, deletes the A.
 
  Now this works fine if I'm just deleting C's directly, however
  as soon as this happens during a 

[sqlalchemy] Re: Deleting records in a MapperExtension on after_delete

2008-11-27 Thread az

so my version does work on postgres too (did u try it?).. 
at least finishes with no errors.
or should there be other checks? like what's left in each table?

On Thursday 27 November 2008 10:30:04 David Harrison wrote:
 Postgres is the intended deployment platform so it really does need
 to work on Postgres, that said last time I dug into this I found
 that SQLite is less strict on enforcing key constraints where
 Postgres isn't, so technically Postgres is right to complain.

 2008/11/27  [EMAIL PROTECTED]:
  and what that shoud do? attached is a changed version... do see
  if that's what u want (it's sqlite, with plain session).
  the only real change is cascade=all,delete-orphan on
  house.owners... but i just unintentionaly guessed it.
 
  On Thursday 27 November 2008 09:51:38 David Harrison wrote:
  So this is actually a follow on from a question I posed quite a
  while back now:
 
  http://groups.google.com/group/sqlalchemy/browse_thread/thread/4
 530
  dd3f5585/eb4638599b02577d?lnk=gstq=Postgres+cascade+error#e
 b463 8599b02577d
 
  So my approach to solving this problem was to use a
  MapperExtension, but it's giving me the error that I originally
  posted in this thread.
 
  I'm re-posting my previous code here for easy reference and
  testing by others (with one tiny mod to get rid of the
  optionparser code I had):
 
  ---
 
  #!/usr/bin/env python
 
  import sys
  import sqlalchemy as sa
  import sqlalchemy.orm
 
 
  session = sa.orm.scoped_session(
  sa.orm.sessionmaker(autoflush=False, transactional=True)
  )
  mapper = session.mapper
  metadata = sa.MetaData()
 
 
  houseTable = sa.Table(
  'house',
  metadata,
  sa.Column('id', sa.Integer, primary_key=True),
  )
 
  ownerTable = sa.Table(
  'owner',
  metadata,
  sa.Column('id', sa.Integer, primary_key=True),
  sa.Column('house_id', sa.Integer,
  sa.ForeignKey('house.id')), )
 
  dogTable = sa.Table(
  'dog',
  metadata,
  sa.Column('id', sa.Integer, primary_key=True),
  sa.Column('house_id', sa.Integer,
  sa.ForeignKey('house.id')), )
 
  friendshipTable = sa.Table(
  'friendship',
  metadata,
  sa.Column('id', sa.Integer, primary_key=True),
  sa.Column('owner_id', sa.Integer,
  sa.ForeignKey('owner.id')), sa.Column('dog_id', sa.Integer,
  sa.ForeignKey('dog.id')), )
 
 
  class House(object): pass
  class Owner(object): pass
  class Dog(object): pass
  class Friendship(object): pass
 
 
  mapper(
  House,
  houseTable,
  properties = {
  owners : sa.orm.relation(
  Owner, cascade=delete-orphan
  ),
  dogs : sa.orm.relation(
  Dog, cascade=delete-orphan
  ),
  },
  )
  mapper(
  Owner,
  ownerTable,
  properties = {
  friendships : sa.orm.relation(
  Friendship, cascade=delete
  ),
  },
  )
 
  mapper(
  Friendship,
  friendshipTable,
  properties = {
  dog : sa.orm.relation(
  Dog, uselist=False, cascade=all, delete-orphan
  ),
  },
  )
 
  mapper(Dog, dogTable)
 
 
  if __name__ == __main__:
 
  engine = sa.create_engine(
  postgres://test:[EMAIL PROTECTED]/test,
  strategy=threadlocal,
  echo=True
  )
  metadata.bind = engine
  session.configure(bind=engine)
 
  print Creating tables
  metadata.create_all()
 
  print Seeding database
  for i in range(10): House()
  session.flush()
 
  for house in sa.orm.Query(House).all():
  for i in range(2):
  owner = Owner()
  house.owners.append(owner)
  session.flush()
 
  for house in sa.orm.Query(House).all():
  for i in range(2):
  dog = Dog()
  house.dogs.append(dog)
  session.flush()
 
  for owner in sa.orm.Query(Owner).all():
  for dog in sa.orm.Query(Dog).filter_by(house_id =
  owner.house_id).all(): friendship = Friendship()
  friendship.dog = dog
  owner.friendships.append(friendship)
  session.commit()
 
  owner = sa.orm.Query(Owner).first()
  for f in owner.friendships:
  print FRIENDSHIP: %s  || DOG: %s % (f.id, f.dog.id)
 
  print Deleting owner
  session.delete(owner)
  session.flush()
  session.commit()
 
  2008/11/27 David Harrison [EMAIL PROTECTED]:
   Sorry, I should probably have mentioned that C isn't the only
   object that maps A, so a cascade doesn't work.
  
   2008/11/27  [EMAIL PROTECTED]:
   i'm not expert on these, but i think u need something like
   cascade='all' on your relation, _instead_ of the mapperExt.
   check the docs about possible settings. the mapperExt fires
   too late and the session flush-plan gets surprised.
  
   On Thursday 27 November 2008 08:15:04 David Harrison wrote:
   Hey all,
  
   I've got a situation where I have 2 object A and B, and a
   third object C that has a foreign key reference to both A
   and B.  I 

[sqlalchemy] Re: Deleting records in a MapperExtension on after_delete

2008-11-27 Thread David Harrison

You've changed the session object though, this is for a web app so the
scoped session is what I need.  That then immediately breaks all the
session.save calls.

2008/11/27  [EMAIL PROTECTED]:

 so my version does work on postgres too (did u try it?)..
 at least finishes with no errors.
 or should there be other checks? like what's left in each table?

 On Thursday 27 November 2008 10:30:04 David Harrison wrote:
 Postgres is the intended deployment platform so it really does need
 to work on Postgres, that said last time I dug into this I found
 that SQLite is less strict on enforcing key constraints where
 Postgres isn't, so technically Postgres is right to complain.

 2008/11/27  [EMAIL PROTECTED]:
  and what that shoud do? attached is a changed version... do see
  if that's what u want (it's sqlite, with plain session).
  the only real change is cascade=all,delete-orphan on
  house.owners... but i just unintentionaly guessed it.
 
  On Thursday 27 November 2008 09:51:38 David Harrison wrote:
  So this is actually a follow on from a question I posed quite a
  while back now:
 
  http://groups.google.com/group/sqlalchemy/browse_thread/thread/4
 530
  dd3f5585/eb4638599b02577d?lnk=gstq=Postgres+cascade+error#e
 b463 8599b02577d
 
  So my approach to solving this problem was to use a
  MapperExtension, but it's giving me the error that I originally
  posted in this thread.
 
  I'm re-posting my previous code here for easy reference and
  testing by others (with one tiny mod to get rid of the
  optionparser code I had):
 
  ---
 
  #!/usr/bin/env python
 
  import sys
  import sqlalchemy as sa
  import sqlalchemy.orm
 
 
  session = sa.orm.scoped_session(
  sa.orm.sessionmaker(autoflush=False, transactional=True)
  )
  mapper = session.mapper
  metadata = sa.MetaData()
 
 
  houseTable = sa.Table(
  'house',
  metadata,
  sa.Column('id', sa.Integer, primary_key=True),
  )
 
  ownerTable = sa.Table(
  'owner',
  metadata,
  sa.Column('id', sa.Integer, primary_key=True),
  sa.Column('house_id', sa.Integer,
  sa.ForeignKey('house.id')), )
 
  dogTable = sa.Table(
  'dog',
  metadata,
  sa.Column('id', sa.Integer, primary_key=True),
  sa.Column('house_id', sa.Integer,
  sa.ForeignKey('house.id')), )
 
  friendshipTable = sa.Table(
  'friendship',
  metadata,
  sa.Column('id', sa.Integer, primary_key=True),
  sa.Column('owner_id', sa.Integer,
  sa.ForeignKey('owner.id')), sa.Column('dog_id', sa.Integer,
  sa.ForeignKey('dog.id')), )
 
 
  class House(object): pass
  class Owner(object): pass
  class Dog(object): pass
  class Friendship(object): pass
 
 
  mapper(
  House,
  houseTable,
  properties = {
  owners : sa.orm.relation(
  Owner, cascade=delete-orphan
  ),
  dogs : sa.orm.relation(
  Dog, cascade=delete-orphan
  ),
  },
  )
  mapper(
  Owner,
  ownerTable,
  properties = {
  friendships : sa.orm.relation(
  Friendship, cascade=delete
  ),
  },
  )
 
  mapper(
  Friendship,
  friendshipTable,
  properties = {
  dog : sa.orm.relation(
  Dog, uselist=False, cascade=all, delete-orphan
  ),
  },
  )
 
  mapper(Dog, dogTable)
 
 
  if __name__ == __main__:
 
  engine = sa.create_engine(
  postgres://test:[EMAIL PROTECTED]/test,
  strategy=threadlocal,
  echo=True
  )
  metadata.bind = engine
  session.configure(bind=engine)
 
  print Creating tables
  metadata.create_all()
 
  print Seeding database
  for i in range(10): House()
  session.flush()
 
  for house in sa.orm.Query(House).all():
  for i in range(2):
  owner = Owner()
  house.owners.append(owner)
  session.flush()
 
  for house in sa.orm.Query(House).all():
  for i in range(2):
  dog = Dog()
  house.dogs.append(dog)
  session.flush()
 
  for owner in sa.orm.Query(Owner).all():
  for dog in sa.orm.Query(Dog).filter_by(house_id =
  owner.house_id).all(): friendship = Friendship()
  friendship.dog = dog
  owner.friendships.append(friendship)
  session.commit()
 
  owner = sa.orm.Query(Owner).first()
  for f in owner.friendships:
  print FRIENDSHIP: %s  || DOG: %s % (f.id, f.dog.id)
 
  print Deleting owner
  session.delete(owner)
  session.flush()
  session.commit()
 
  2008/11/27 David Harrison [EMAIL PROTECTED]:
   Sorry, I should probably have mentioned that C isn't the only
   object that maps A, so a cascade doesn't work.
  
   2008/11/27  [EMAIL PROTECTED]:
   i'm not expert on these, but i think u need something like
   cascade='all' on your relation, _instead_ of the mapperExt.
   check the docs about possible settings. the mapperExt fires
   too late and the session flush-plan gets surprised.
  
   On Thursday 

[sqlalchemy] Re: Deleting records in a MapperExtension on after_delete

2008-11-27 Thread az

i've modified all relations to be all,delete-orphan and now it does 
add them all - as your scoped session does - and then complains:

Deleting owner
BEGIN
DELETE FROM friendship WHERE friendship.id = %(id)s
 [{'id': 1L}, {'id': 2L}]
DELETE FROM owner WHERE owner.id = %(id)s
 {'id': 1L}
DELETE FROM dog WHERE dog.id = %(id)s
 [{'id': 1}, {'id': 2}]
ROLLBACK
Traceback (most recent call last):
  File f.py, line 138, in module
session.flush()
...
raise exc.DBAPIError.instance(statement, parameters, e, 
connection_invalidated=is_disconnect)
sqlalchemy.exc.IntegrityError: (IntegrityError) update or delete on 
table dog violates foreign key constraint friendship_dog_id_fkey 
on table friendship
DETAIL:  Key (id)=(1) is still referenced from table friendship.
 'DELETE FROM dog WHERE dog.id = %(id)s' [{'id': 1}, {'id': 2}]

well... u have other friendships referencing that same dog/s.

so i tried this and that and if the friendship.dog has no cascades at 
all (i.e. just default), then all seems ok - owner and friendships 
deleted, dogs not.
i guess u want when 2nd owner gets deleted to delete the orphan dogs?
it's not in the src...

maybe a better testcase would be of help - asserting whats in db and 
what should not be, before and after.

back on the initial question, mapperExt come to play too late in 
session. u may try sessionExt hooks... or other/earlier mapperExt 
hook... eventualy.

svil

On Thursday 27 November 2008 10:30:04 David Harrison wrote:
 Postgres is the intended deployment platform so it really does need
 to work on Postgres, that said last time I dug into this I found
 that SQLite is less strict on enforcing key constraints where
 Postgres isn't, so technically Postgres is right to complain.

 2008/11/27  [EMAIL PROTECTED]:
  and what that shoud do? attached is a changed version... do see
  if that's what u want (it's sqlite, with plain session).
  the only real change is cascade=all,delete-orphan on
  house.owners... but i just unintentionaly guessed it.
 
  On Thursday 27 November 2008 09:51:38 David Harrison wrote:
  So this is actually a follow on from a question I posed quite a
  while back now:
 
  http://groups.google.com/group/sqlalchemy/browse_thread/thread/4
 530
  dd3f5585/eb4638599b02577d?lnk=gstq=Postgres+cascade+error#e
 b463 8599b02577d
 
  So my approach to solving this problem was to use a
  MapperExtension, but it's giving me the error that I originally
  posted in this thread.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---



[sqlalchemy] Re: Deleting records in a MapperExtension on after_delete

2008-11-27 Thread David Harrison

Which was the error I posted to ask about in the first place ;-)

Writing a session extension for this problem seems like using a very
very very large hammer, since I only need to trigger my 'manual
cascade' in a particular circumstance.

I'm hoping Mike or one of the devs might have advice on how this
situation is meant to be handled ?

2008/11/27  [EMAIL PROTECTED]:

 i've modified all relations to be all,delete-orphan and now it does
 add them all - as your scoped session does - and then complains:

 Deleting owner
 BEGIN
 DELETE FROM friendship WHERE friendship.id = %(id)s
  [{'id': 1L}, {'id': 2L}]
 DELETE FROM owner WHERE owner.id = %(id)s
  {'id': 1L}
 DELETE FROM dog WHERE dog.id = %(id)s
  [{'id': 1}, {'id': 2}]
 ROLLBACK
 Traceback (most recent call last):
  File f.py, line 138, in module
session.flush()
 ...
raise exc.DBAPIError.instance(statement, parameters, e,
 connection_invalidated=is_disconnect)
 sqlalchemy.exc.IntegrityError: (IntegrityError) update or delete on
 table dog violates foreign key constraint friendship_dog_id_fkey
 on table friendship
 DETAIL:  Key (id)=(1) is still referenced from table friendship.
  'DELETE FROM dog WHERE dog.id = %(id)s' [{'id': 1}, {'id': 2}]

 well... u have other friendships referencing that same dog/s.

 so i tried this and that and if the friendship.dog has no cascades at
 all (i.e. just default), then all seems ok - owner and friendships
 deleted, dogs not.
 i guess u want when 2nd owner gets deleted to delete the orphan dogs?
 it's not in the src...

 maybe a better testcase would be of help - asserting whats in db and
 what should not be, before and after.

 back on the initial question, mapperExt come to play too late in
 session. u may try sessionExt hooks... or other/earlier mapperExt
 hook... eventualy.

 svil

 On Thursday 27 November 2008 10:30:04 David Harrison wrote:
 Postgres is the intended deployment platform so it really does need
 to work on Postgres, that said last time I dug into this I found
 that SQLite is less strict on enforcing key constraints where
 Postgres isn't, so technically Postgres is right to complain.

 2008/11/27  [EMAIL PROTECTED]:
  and what that shoud do? attached is a changed version... do see
  if that's what u want (it's sqlite, with plain session).
  the only real change is cascade=all,delete-orphan on
  house.owners... but i just unintentionaly guessed it.
 
  On Thursday 27 November 2008 09:51:38 David Harrison wrote:
  So this is actually a follow on from a question I posed quite a
  while back now:
 
  http://groups.google.com/group/sqlalchemy/browse_thread/thread/4
 530
  dd3f5585/eb4638599b02577d?lnk=gstq=Postgres+cascade+error#e
 b463 8599b02577d
 
  So my approach to solving this problem was to use a
  MapperExtension, but it's giving me the error that I originally
  posted in this thread.

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---



[sqlalchemy] Re: Deleting records in a MapperExtension on after_delete

2008-11-27 Thread az

On Thursday 27 November 2008 11:42:28 David Harrison wrote:
 Which was the error I posted to ask about in the first place ;-)

 Writing a session extension for this problem seems like using a
 very very very large hammer, since I only need to trigger my
 'manual cascade' in a particular circumstance.
i dont know, to me sessExt is a much softer hammer than mapperExt as 
it has overall view at whats to be processed, before it is processed. 
there is some info about which hook is called when, and what info is 
available at what time, and what can and cannot be done then - see 
SessionExt's and MapperExt's methods docs. 
But the exact order and assumptions/dependencies thereof are still a 
bit misty to me... 6 months after i asked for first time.
sorry i couldnot help.

 I'm hoping Mike or one of the devs might have advice on how this
 situation is meant to be handled ?


 2008/11/27  [EMAIL PROTECTED]:
  i've modified all relations to be all,delete-orphan and now it
  does add them all - as your scoped session does - and then
  complains:
 
  Deleting owner
  BEGIN
  DELETE FROM friendship WHERE friendship.id = %(id)s
   [{'id': 1L}, {'id': 2L}]
  DELETE FROM owner WHERE owner.id = %(id)s
   {'id': 1L}
  DELETE FROM dog WHERE dog.id = %(id)s
   [{'id': 1}, {'id': 2}]
  ROLLBACK
  Traceback (most recent call last):
   File f.py, line 138, in module
 session.flush()
  ...
 raise exc.DBAPIError.instance(statement, parameters, e,
  connection_invalidated=is_disconnect)
  sqlalchemy.exc.IntegrityError: (IntegrityError) update or delete
  on table dog violates foreign key constraint
  friendship_dog_id_fkey on table friendship
  DETAIL:  Key (id)=(1) is still referenced from table
  friendship. 'DELETE FROM dog WHERE dog.id = %(id)s' [{'id': 1},
  {'id': 2}]
 
  well... u have other friendships referencing that same dog/s.
 
  so i tried this and that and if the friendship.dog has no
  cascades at all (i.e. just default), then all seems ok - owner
  and friendships deleted, dogs not.
  i guess u want when 2nd owner gets deleted to delete the orphan
  dogs? it's not in the src...
 
  maybe a better testcase would be of help - asserting whats in db
  and what should not be, before and after.
 
  back on the initial question, mapperExt come to play too late in
  session. u may try sessionExt hooks... or other/earlier mapperExt
  hook... eventualy.
 
  svil
 
  On Thursday 27 November 2008 10:30:04 David Harrison wrote:
  Postgres is the intended deployment platform so it really does
  need to work on Postgres, that said last time I dug into this I
  found that SQLite is less strict on enforcing key constraints
  where Postgres isn't, so technically Postgres is right to
  complain.
 
  2008/11/27  [EMAIL PROTECTED]:
   and what that shoud do? attached is a changed version... do
   see if that's what u want (it's sqlite, with plain session).
   the only real change is cascade=all,delete-orphan on
   house.owners... but i just unintentionaly guessed it.
  
   On Thursday 27 November 2008 09:51:38 David Harrison wrote:
   So this is actually a follow on from a question I posed quite
   a while back now:
  
   http://groups.google.com/group/sqlalchemy/browse_thread/threa
  d/4 530
   dd3f5585/eb4638599b02577d?lnk=gstq=Postgres+cascade+erro
  r#e b463 8599b02577d
  
   So my approach to solving this problem was to use a
   MapperExtension, but it's giving me the error that I
   originally posted in this thread.

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---



[sqlalchemy] Re: Deleting records in a MapperExtension on after_delete

2008-11-27 Thread Michael Bayer


On Nov 27, 2008, at 1:15 AM, David Harrison wrote:


 Hey all,

 I've got a situation where I have 2 object A and B, and a third object
 C that has a foreign key reference to both A and B.  I can have many
 C's that map to the same A.

 Now I've implemented a MapperExtension for C that has an after_delete
 function, and that function checks to see if the A that the deleted C
 was mapped to has any other mappings, and if there are no other
 mappings left, deletes the A.

 Now this works fine if I'm just deleting C's directly, however as soon
 as this happens during a cascade delete from some other object D that
 happens to have a mapping to C I get the below error - I'm assuming
 this is because sqlalchemy has a test condition that doesn't see my
 mapper coming, and freaks out when extra rows get nuked.

 ConcurrentModificationError: Deleted rowcount 0 does not match number
 of objects deleted 4


this error is because you've deleted some rows that the mapper is  
expecting to delete itself due to a delete cascade.   here is the  
full spectrum of approaches:

1. remove all delete cascades that reach A objects.  I'm guessing  
this is not an option.

2. move your function into a SessionExtension.after_flush() that  
issues your DELETEs after the unit of work has completed its tasks.  
When you work with SessionExtensions within after_flush(), peek into  
the new, dirty, and deleted lists, which haven't been reset at  
that point, to get the information you need.   This might be the  
easiest way to go.

3. it would probably work if you were to peek into the UOWContext  
itself to see if the A in question is already marked for deletion.
This would also be pretty easy though I've never recommended this  
approach before so would have to be tested.  But unfortunately the  
UOWContext isn't passed to the mapper extension methods.It is  
passed to the SessionExtension methods though, so you could grab it  
through one of those, something like:

import threading
from sqlalchemy.orm.attributes import instance_state

current_flush_context = threading.local()
class MySessionExt(SessionExtension):
 def before_flush(self, session, flush_context, instances):
 current_flush_context.context = flush_context

 def after_flush(self, session, flush_context, instances):
 del current_flush_context.context

class MyMapperExt(MapperExtension):
 def after_delete(self, mapper, connection, instance):
 ... get your A object to be deleted ...
 if not  
current_flush_context.context.is_deleted(instance_state(the_A_object)):
 ... delete the A 



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---



[sqlalchemy] Re: Deleting records in a MapperExtension on after_delete

2008-11-26 Thread az

i'm not expert on these, but i think u need something like 
cascade='all' on your relation, _instead_ of the mapperExt. check the 
docs about possible settings. the mapperExt fires too late and the 
session flush-plan gets surprised.

On Thursday 27 November 2008 08:15:04 David Harrison wrote:
 Hey all,

 I've got a situation where I have 2 object A and B, and a third
 object C that has a foreign key reference to both A and B.  I can
 have many C's that map to the same A.

 Now I've implemented a MapperExtension for C that has an
 after_delete function, and that function checks to see if the A
 that the deleted C was mapped to has any other mappings, and if
 there are no other mappings left, deletes the A.

 Now this works fine if I'm just deleting C's directly, however as
 soon as this happens during a cascade delete from some other object
 D that happens to have a mapping to C I get the below error - I'm
 assuming this is because sqlalchemy has a test condition that
 doesn't see my mapper coming, and freaks out when extra rows get
 nuked.

 ConcurrentModificationError: Deleted rowcount 0 does not match
 number of objects deleted 4

 Help ?

 Cheers
 Dave

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---



[sqlalchemy] Re: Deleting records in a MapperExtension on after_delete

2008-11-26 Thread David Harrison

Sorry, I should probably have mentioned that C isn't the only object
that maps A, so a cascade doesn't work.

2008/11/27  [EMAIL PROTECTED]:

 i'm not expert on these, but i think u need something like
 cascade='all' on your relation, _instead_ of the mapperExt. check the
 docs about possible settings. the mapperExt fires too late and the
 session flush-plan gets surprised.

 On Thursday 27 November 2008 08:15:04 David Harrison wrote:
 Hey all,

 I've got a situation where I have 2 object A and B, and a third
 object C that has a foreign key reference to both A and B.  I can
 have many C's that map to the same A.

 Now I've implemented a MapperExtension for C that has an
 after_delete function, and that function checks to see if the A
 that the deleted C was mapped to has any other mappings, and if
 there are no other mappings left, deletes the A.

 Now this works fine if I'm just deleting C's directly, however as
 soon as this happens during a cascade delete from some other object
 D that happens to have a mapping to C I get the below error - I'm
 assuming this is because sqlalchemy has a test condition that
 doesn't see my mapper coming, and freaks out when extra rows get
 nuked.

 ConcurrentModificationError: Deleted rowcount 0 does not match
 number of objects deleted 4

 Help ?

 Cheers
 Dave




 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---



[sqlalchemy] Re: Deleting records in a MapperExtension on after_delete

2008-11-26 Thread David Harrison

So this is actually a follow on from a question I posed quite a while back now:

http://groups.google.com/group/sqlalchemy/browse_thread/thread/4530dd3f5585/eb4638599b02577d?lnk=gstq=Postgres+cascade+error#eb4638599b02577d

So my approach to solving this problem was to use a MapperExtension,
but it's giving me the error that I originally posted in this thread.

I'm re-posting my previous code here for easy reference and testing by
others (with one tiny mod to get rid of the optionparser code I had):

---

#!/usr/bin/env python

import sys
import sqlalchemy as sa
import sqlalchemy.orm


session = sa.orm.scoped_session(
sa.orm.sessionmaker(autoflush=False, transactional=True)
)
mapper = session.mapper
metadata = sa.MetaData()


houseTable = sa.Table(
'house',
metadata,
sa.Column('id', sa.Integer, primary_key=True),
)

ownerTable = sa.Table(
'owner',
metadata,
sa.Column('id', sa.Integer, primary_key=True),
sa.Column('house_id', sa.Integer, sa.ForeignKey('house.id')),
)

dogTable = sa.Table(
'dog',
metadata,
sa.Column('id', sa.Integer, primary_key=True),
sa.Column('house_id', sa.Integer, sa.ForeignKey('house.id')),
)

friendshipTable = sa.Table(
'friendship',
metadata,
sa.Column('id', sa.Integer, primary_key=True),
sa.Column('owner_id', sa.Integer, sa.ForeignKey('owner.id')),
sa.Column('dog_id', sa.Integer, sa.ForeignKey('dog.id')),
)


class House(object): pass
class Owner(object): pass
class Dog(object): pass
class Friendship(object): pass


mapper(
House,
houseTable,
properties = {
owners : sa.orm.relation(
Owner, cascade=delete-orphan
),
dogs : sa.orm.relation(
Dog, cascade=delete-orphan
),
},
)
mapper(
Owner,
ownerTable,
properties = {
friendships : sa.orm.relation(
Friendship, cascade=delete
),
},
)

mapper(
Friendship,
friendshipTable,
properties = {
dog : sa.orm.relation(
Dog, uselist=False, cascade=all, delete-orphan
),
},
)

mapper(Dog, dogTable)


if __name__ == __main__:

engine = sa.create_engine(
postgres://test:[EMAIL PROTECTED]/test,
strategy=threadlocal,
echo=True
)
metadata.bind = engine
session.configure(bind=engine)

print Creating tables
metadata.create_all()

print Seeding database
for i in range(10): House()
session.flush()

for house in sa.orm.Query(House).all():
for i in range(2):
owner = Owner()
house.owners.append(owner)
session.flush()

for house in sa.orm.Query(House).all():
for i in range(2):
dog = Dog()
house.dogs.append(dog)
session.flush()

for owner in sa.orm.Query(Owner).all():
for dog in sa.orm.Query(Dog).filter_by(house_id = owner.house_id).all():
friendship = Friendship()
friendship.dog = dog
owner.friendships.append(friendship)
session.commit()

owner = sa.orm.Query(Owner).first()
for f in owner.friendships:
print FRIENDSHIP: %s  || DOG: %s % (f.id, f.dog.id)

print Deleting owner
session.delete(owner)
session.flush()
session.commit()


2008/11/27 David Harrison [EMAIL PROTECTED]:
 Sorry, I should probably have mentioned that C isn't the only object
 that maps A, so a cascade doesn't work.

 2008/11/27  [EMAIL PROTECTED]:

 i'm not expert on these, but i think u need something like
 cascade='all' on your relation, _instead_ of the mapperExt. check the
 docs about possible settings. the mapperExt fires too late and the
 session flush-plan gets surprised.

 On Thursday 27 November 2008 08:15:04 David Harrison wrote:
 Hey all,

 I've got a situation where I have 2 object A and B, and a third
 object C that has a foreign key reference to both A and B.  I can
 have many C's that map to the same A.

 Now I've implemented a MapperExtension for C that has an
 after_delete function, and that function checks to see if the A
 that the deleted C was mapped to has any other mappings, and if
 there are no other mappings left, deletes the A.

 Now this works fine if I'm just deleting C's directly, however as
 soon as this happens during a cascade delete from some other object
 D that happens to have a mapping to C I get the below error - I'm
 assuming this is because sqlalchemy has a test condition that
 doesn't see my mapper coming, and freaks out when extra rows get
 nuked.

 ConcurrentModificationError: Deleted rowcount 0 does not match
 number of objects deleted 4

 Help ?

 Cheers
 Dave




 



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at