]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- named_with_column becomes an attribute
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 25 Nov 2007 03:28:49 +0000 (03:28 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 25 Nov 2007 03:28:49 +0000 (03:28 +0000)
commitcf18eecd704f5eb6fde4e0c362cfdb322e3e559a
tree9b6e4503802cf0fcae9171b3ac2f85ba0af453c7
parent6f604f911640d92f705fc6611bfaa3e2600c4ee1
- named_with_column becomes an attribute
- cleanup within compiler visit_select(), column labeling
- is_select() removed from dialects, replaced with returns_rows_text(), returns_rows_compiled()
- should_autocommit() removed from dialects, replaced with should_autocommit_text() and
should_autocommit_compiled()
- typemap and column_labels collections removed from Compiler, replaced with single "result_map" collection.
- ResultProxy uses more succinct logic in combination with result_map to target columns
16 files changed:
lib/sqlalchemy/databases/access.py
lib/sqlalchemy/databases/informix.py
lib/sqlalchemy/databases/mssql.py
lib/sqlalchemy/databases/mysql.py
lib/sqlalchemy/databases/postgres.py
lib/sqlalchemy/databases/sqlite.py
lib/sqlalchemy/databases/sybase.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/schema.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/expression.py
test/dialect/postgres.py
test/profiling/compiler.py
test/profiling/zoomark.py