Re: [sqlalchemy] allow_partial_pks=False goes to database on partial pk

2010-05-11 Thread Michael Bayer
just put up a new ticket, i dont really have time to attend to these right now. you're right we'd probably move the partial pk's check to the ultimate call that un-expires things. On May 10, 2010, at 5:21 PM, Kent wrote: See this script, running 0.6.0:

Re: [sqlalchemy] allow_partial_pks=False goes to database on partial pk

2010-05-11 Thread Kent Bower
http://www.sqlalchemy.org/trac/ticket/1797 On 5/11/2010 9:50 AM, Michael Bayer wrote: just put up a new ticket, i dont really have time to attend to these right now. you're right we'd probably move the partial pk's check to the ultimate call that un-expires things. On May 10, 2010, at

[sqlalchemy] allow_partial_pks=False goes to database on partial pk

2010-05-10 Thread Kent
See this script, running 0.6.0: == from sqlalchemy import * from sqlalchemy.orm import * engine = create_engine('oracle://user:passw...@localhost:1521/xe? use_ansi=False',echo=True) metadata = MetaData() Session = sessionmaker(bind=engine) session