[sqlalchemy] Re: Uninitialized coltype in PGDialect.get_columns() for custom column basetype

2010-09-30 Thread Nikolaj
Sorry I was being a bit lazy and trying to avoid setting up the PG test environment. The problem affects a domain over a custom type. Here is a test that exhibits the behaviour (without assertions): class DomainOverCustomTypeReflectionTest(TestBase, AssertsExecutionResults): __only_on__ =

Re: [sqlalchemy] Re: Uninitialized coltype in PGDialect.get_columns() for custom column basetype

2010-09-30 Thread Michael Bayer
great, that test is perfect. I added ticket #1933, I just want to see if I can get the testtype to be available somehow before falling back to setting coltype=None solution. On Sep 30, 2010, at 9:22 AM, Nikolaj wrote: Sorry I was being a bit lazy and trying to avoid setting up the PG test