I'm encountering a problem with SA 0.6.1
I have a select statement which selects the same column twice (and
some other stuff, too).
However, when the query is run (or printed), the column only shows up once.
This seems like a bug.

Example:

from sqlalchemy import create_engine, select, Table, Column, INT, MetaData
e = create_engine('sqlite://')
meta = MetaData(bind=e)
t = Table( 'test', meta, Column( 'c1', INT() ) )
meta.create_all()
print select([t.c.c1, t.c.c1])

I expected:

SELECT test.c1, test.c1
FROM test

I got:

SELECT test.c1
FROM test

-- 
Jon

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.

Reply via email to