Re: [sqlalchemy] Re: get raw sql for create type and tables

2011-10-29 Thread Michael Bayer
OK I rearranged how PG does "checkfirst", to only process a particular named ENUM type once within a particular create/drop sequence without needing to check the DB, so the "checkfirst" flag can now be honored normally. This is in rde4eb56fb6c8 and you can get this at http://hg.sqlalchemy.org/

Re: [sqlalchemy] recursion loop

2011-10-29 Thread Michael Bayer
On Oct 28, 2011, at 7:09 PM, Burak Arslan wrote: > um, this doesn't crash at all here, are you sure you didn't miss something ? > i can do a "print B()" Here is that test again, not using the __abstract__ keyword which was only introduced in 0.7.3: from sqlalchemy import Integer, Column from s