]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- removed needless "counter" behavior with select()
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 8 Dec 2009 02:31:59 +0000 (02:31 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 8 Dec 2009 02:31:59 +0000 (02:31 +0000)
commit358bc9db1c86fc26d89ed726305a109af14e2572
tree6650d4db12648cb404b16c15db5e53f0d794e9b6
parent1b1acad676efc2f1fa616d1421b544219e65e953
- removed needless "counter" behavior with select()
labelnames that match a column name in the table,
i.e. generates "tablename_id" for "id", instead of
"tablename_id_1" in an attempt to avoid naming
conflicts, when the table has a column actually
named "tablename_id" - this is because
the labeling logic is always applied to all columns
      so a naming conflict will never occur.
CHANGES
lib/sqlalchemy/sql/expression.py