Server_default flag should also accept Python DataTypes

Issue #1204 resolved
Former user created an issue
t = Table('test', meta,
    Column('abc', Boolean, server_default=False),
)

I should be able to do this, right???

-- Hatem Nassrat

Comments (5)

  1. Michael Trier

    We can't use bind params for the "DEFAULT" value. We rely partially upon DBAPI for processing of python values. We'd have to invent all python value processing within SQLAlchemy and server defaults are not very DB independent. Going to Blue Sky this one.

  2. Log in to comment