[Sqlalchemy-tickets] Issue #3028: support text() in Index that's already table bound (zzzeek/sqlalc
Brought to you by:
zzzeek
|
From: Mike B. <iss...@bi...> - 2014-04-18 05:05:22
|
New issue 3028: support text() in Index that's already table bound https://bitbucket.org/zzzeek/sqlalchemy/issue/3028/support-text-in-index-thats-already-table Mike Bayer: no reason this shouldn't be possible ``` #!python Table('x', metadata, Column('x', Integer), Index('asdf', text("func.foo.bar(x)")) ) ``` |