Sqlalchemy

Latest version: v2.0.30

Safety actively analyzes 629639 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 40 of 50

0.6beta2

:released: Sat Mar 20 2010

.. change::
:tags: py3k
:tickets:

Improved the installation/test setup regarding Python 3,
now that Distribute runs on Py3k. distribute_setup.py
is now included. See README.py3k for Python 3 installation/
testing instructions.

.. change::
:tags: orm
:tickets: 1740

The official name for the relation() function is now
relationship(), to eliminate confusion over the relational
algebra term. relation() however will remain available
in equal capacity for the foreseeable future.

.. change::
:tags: orm
:tickets: 1692

Added "version_id_generator" argument to Mapper, this is a
callable that, given the current value of the "version_id_col",
returns the next version number. Can be used for alternate
versioning schemes such as uuid, timestamps.

.. change::
:tags: orm
:tickets:

added "lockmode" kw argument to Session.refresh(), will
pass through the string value to Query the same as
in with_lockmode(), will also do version check for a
version_id_col-enabled mapping.

.. change::
:tags: orm
:tickets: 1188

Fixed bug whereby calling query(A).join(A.bs).add_entity(B)
in a joined inheritance scenario would double-add B as a
target and produce an invalid query.

.. change::
:tags: orm
:tickets: 1674

Fixed bug in session.rollback() which involved not removing
formerly "pending" objects from the session before
re-integrating "deleted" objects, typically occurred with
natural primary keys. If there was a primary key conflict
between them, the attach of the deleted would fail
internally. The formerly "pending" objects are now expunged
first.

.. change::
:tags: orm
:tickets: 1719

Removed a lot of logging that nobody really cares about,
logging that remains will respond to live changes in the
log level. No significant overhead is added.

.. change::
:tags: orm
:tickets:

Fixed bug in session.merge() which prevented dict-like
collections from merging.

.. change::
:tags: orm
:tickets:

session.merge() works with relations that specifically
don't include "merge" in their cascade options - the target
is ignored completely.

.. change::
:tags: orm
:tickets: 1681

session.merge() will not expire existing scalar attributes
on an existing target if the target has a value for that
attribute, even if the incoming merged doesn't have
a value for the attribute. This prevents unnecessary loads
on existing items. Will still mark the attr as expired
if the destination doesn't have the attr, though, which
fulfills some contracts of deferred cols.

.. change::
:tags: orm
:tickets: 1680

The "allow_null_pks" flag is now called "allow_partial_pks",
defaults to True, acts like it did in 0.5 again. Except,
it also is implemented within merge() such that a SELECT
won't be issued for an incoming instance with partially
NULL primary key if the flag is False.

.. change::
:tags: orm
:tickets: 1737

Fixed bug in 0.6-reworked "many-to-one" optimizations
such that a many-to-one that is against a non-primary key
column on the remote table (i.e. foreign key against a
UNIQUE column) will pull the "old" value in from the
database during a change, since if it's in the session
we will need it for proper history/backref accounting,
and we can't pull from the local identity map on a
non-primary key column.

.. change::
:tags: orm
:tickets: 1731

fixed internal error which would occur if calling has()
or similar complex expression on a single-table inheritance
relation().

.. change::
:tags: orm
:tickets: 1688

query.one() no longer applies LIMIT to the query, this to
ensure that it fully counts all object identities present
in the result, even in the case where joins may conceal
multiple identities for two or more rows. As a bonus,
one() can now also be called with a query that issued
from_statement() to start with since it no longer modifies
the query.

.. change::
:tags: orm
:tickets: 1727

query.get() now returns None if queried for an identifier
that is present in the identity map with a different class
than the one requested, i.e. when using polymorphic loading.

.. change::
:tags: orm
:tickets: 1706

A major fix in query.join(), when the "on" clause is an
attribute of an aliased() construct, but there is already
an existing join made out to a compatible target, query properly
joins to the right aliased() construct instead of sticking
onto the right side of the existing join.

.. change::
:tags: orm
:tickets: 1362

Slight improvement to the fix for to not issue
needless updates of the primary key column during a so-called
"row switch" operation, i.e. add + delete of two objects
with the same PK.

.. change::
:tags: orm
:tickets:

Now uses sqlalchemy.orm.exc.DetachedInstanceError when an
attribute load or refresh action fails due to object
being detached from any Session. UnboundExecutionError
is specific to engines bound to sessions and statements.

.. change::
:tags: orm
:tickets:

Query called in the context of an expression will render
disambiguating labels in all cases. Note that this does
not apply to the existing .statement and .subquery()
accessor/method, which still honors the .with_labels()
setting that defaults to False.

.. change::
:tags: orm
:tickets: 1676

Query.union() retains disambiguating labels within the
returned statement, thus avoiding various SQL composition
errors which can result from column name conflicts.

.. change::
:tags: orm
:tickets:

Fixed bug in attribute history that inadvertently invoked
__eq__ on mapped instances.

.. change::
:tags: orm
:tickets:

Some internal streamlining of object loading grants a
small speedup for large results, estimates are around
10-15%. Gave the "state" internals a good solid
cleanup with less complexity, datamembers,
method calls, blank dictionary creates.

.. change::
:tags: orm
:tickets: 1689

Documentation clarification for query.delete()

.. change::
:tags: orm
:tickets:

Fixed cascade bug in many-to-one relation() when attribute
was set to None, introduced in r6711 (cascade deleted
items into session during add()).

.. change::
:tags: orm
:tickets: 1736

Calling query.order_by() or query.distinct() before calling
query.select_from(), query.with_polymorphic(), or
query.from_statement() raises an exception now instead of
silently dropping those criterion.

.. change::
:tags: orm
:tickets: 1735

query.scalar() now raises an exception if more than one
row is returned. All other behavior remains the same.

.. change::
:tags: orm
:tickets: 1692

Fixed bug which caused "row switch" logic, that is an
INSERT and DELETE replaced by an UPDATE, to fail when
version_id_col was in use.

.. change::
:tags: sql
:tickets: 1714

join() will now simulate a NATURAL JOIN by default. Meaning,
if the left side is a join, it will attempt to join the right
side to the rightmost side of the left first, and not raise
any exceptions about ambiguous join conditions if successful
even if there are further join targets across the rest of
the left.

.. change::
:tags: sql
:tickets:

The most common result processors conversion function were
moved to the new "processors" module. Dialect authors are
encouraged to use those functions whenever they correspond
to their needs instead of implementing custom ones.

.. change::
:tags: sql
:tickets: 1694, 1698

SchemaType and subclasses Boolean, Enum are now serializable,
including their ddl listener and other event callables.

.. change::
:tags: sql
:tickets:

Some platforms will now interpret certain literal values
as non-bind parameters, rendered literally into the SQL
statement. This to support strict SQL-92 rules that are
enforced by some platforms including MS-SQL and Sybase.
In this model, bind parameters aren't allowed in the
columns clause of a SELECT, nor are certain ambiguous
expressions like "?=?". When this mode is enabled, the base
compiler will render the binds as inline literals, but only across
strings and numeric values. Other types such as dates
will raise an error, unless the dialect subclass defines
a literal rendering function for those. The bind parameter
must have an embedded literal value already or an error
is raised (i.e. won't work with straight bindparam('x')).
Dialects can also expand upon the areas where binds are not
accepted, such as within argument lists of functions
(which don't work on MS-SQL when native SQL binding is used).

.. change::
:tags: sql
:tickets:

Added "unicode_errors" parameter to String, Unicode, etc.
Behaves like the 'errors' keyword argument to
the standard library's string.decode() functions. This flag
requires that `convert_unicode` is set to `"force"` - otherwise,
SQLAlchemy is not guaranteed to handle the task of unicode
conversion. Note that this flag adds significant performance
overhead to row-fetching operations for backends that already
return unicode objects natively (which most DBAPIs do). This
flag should only be used as an absolute last resort for reading
strings from a column with varied or corrupted encodings,
which only applies to databases that accept invalid encodings
in the first place (i.e. MySQL. *not* PG, Sqlite, etc.)

.. change::
:tags: sql
:tickets:

Added math negation operator support, -x.

.. change::
:tags: sql
:tickets:

FunctionElement subclasses are now directly executable the
same way any func.foo() construct is, with automatic
SELECT being applied when passed to execute().

.. change::
:tags: sql
:tickets:

The "type" and "bind" keyword arguments of a func.foo()
construct are now local to "func." constructs and are
not part of the FunctionElement base class, allowing
a "type" to be handled in a custom constructor or
class-level variable.

.. change::
:tags: sql
:tickets:

Restored the keys() method to ResultProxy.

.. change::
:tags: sql
:tickets: 1647, 1683

The type/expression system now does a more complete job
of determining the return type from an expression
as well as the adaptation of the Python operator into
a SQL operator, based on the full left/right/operator
of the given expression. In particular
the date/time/interval system created for PostgreSQL
EXTRACT in has now been generalized into
the type system. The previous behavior which often
occurred of an expression "column + literal" forcing
the type of "literal" to be the same as that of "column"
will now usually not occur - the type of
"literal" is first derived from the Python type of the
literal, assuming standard native Python types + date
types, before falling back to that of the known type
on the other side of the expression. If the
"fallback" type is compatible (i.e. CHAR from String),
the literal side will use that. TypeDecorator
types override this by default to coerce the "literal"
side unconditionally, which can be changed by implementing
the coerce_compared_value() method. Also part of.

.. change::
:tags: sql
:tickets:

Made sqlalchemy.sql.expressions.Executable part of public
API, used for any expression construct that can be sent to
execute(). FunctionElement now inherits Executable so that
it gains execution_options(), which are also propagated
to the select() that's generated within execute().
Executable in turn subclasses _Generative which marks
any ClauseElement that supports the _generative
decorator - these may also become "public" for the benefit
of the compiler extension at some point.

.. change::
:tags: sql
:tickets: 1579

A change to the solution for - an end-user
defined bind parameter name that directly conflicts with
a column-named bind generated directly from the SET or
VALUES clause of an update/insert generates a compile error.
This reduces call counts and eliminates some cases where
undesirable name conflicts could still occur.

.. change::
:tags: sql
:tickets: 1705

Column() requires a type if it has no foreign keys (this is
not new). An error is now raised if a Column() has no type
and no foreign keys.

.. change::
:tags: sql
:tickets: 1717

the "scale" argument of the Numeric() type is honored when
coercing a returned floating point value into a string
on its way to Decimal - this allows accuracy to function
on SQLite, MySQL.

.. change::
:tags: sql
:tickets:

the copy() method of Column now copies over uninitialized
"on table attach" events. Helps with the new declarative
"mixin" capability.

.. change::
:tags: engines
:tickets:

Added an optional C extension to speed up the sql layer by
reimplementing RowProxy and the most common result processors.
The actual speedups will depend heavily on your DBAPI and
the mix of datatypes used in your tables, and can vary from
a 30% improvement to more than 200%. It also provides a modest
(~15-20%) indirect improvement to ORM speed for large queries.
Note that it is *not* built/installed by default.
See README for installation instructions.

.. change::
:tags: engines
:tickets:

the execution sequence pulls all rowcount/last inserted ID
info from the cursor before commit() is called on the
DBAPI connection in an "autocommit" scenario. This helps
mxodbc with rowcount and is probably a good idea overall.

.. change::
:tags: engines
:tickets: 1719

Opened up logging a bit such that isEnabledFor() is called
more often, so that changes to the log level for engine/pool
will be reflected on next connect. This adds a small
amount of method call overhead. It's negligible and will make
life a lot easier for all those situations when logging
just happens to be configured after create_engine() is called.

.. change::
:tags: engines
:tickets:

The assert_unicode flag is deprecated. SQLAlchemy will raise
a warning in all cases where it is asked to encode a non-unicode
Python string, as well as when a Unicode or UnicodeType type
is explicitly passed a bytestring. The String type will do nothing
for DBAPIs that already accept Python unicode objects.

.. change::
:tags: engines
:tickets:

Bind parameters are sent as a tuple instead of a list. Some
backend drivers will not accept bind parameters as a list.

.. change::
:tags: engines
:tickets:

threadlocal engine wasn't properly closing the connection
upon close() - fixed that.

.. change::
:tags: engines
:tickets:

Transaction object doesn't rollback or commit if it isn't
"active", allows more accurate nesting of begin/rollback/commit.

.. change::
:tags: engines
:tickets:

Python unicode objects as binds result in the Unicode type,
not string, thus eliminating a certain class of unicode errors
on drivers that don't support unicode binds.

.. change::
:tags: engines
:tickets: 1555

Added "logging_name" argument to create_engine(), Pool() constructor
as well as "pool_logging_name" argument to create_engine() which
filters down to that of Pool. Issues the given string name
within the "name" field of logging messages instead of the default
hex identifier string.

.. change::
:tags: engines
:tickets:

The visit_pool() method of Dialect is removed, and replaced with
on_connect(). This method returns a callable which receives
the raw DBAPI connection after each one is created. The callable
is assembled into a first_connect/connect pool listener by the
connection strategy if non-None. Provides a simpler interface
for dialects.

.. change::
:tags: engines
:tickets: 1728

StaticPool now initializes, disposes and recreates without
opening a new connection - the connection is only opened when
first requested. dispose() also works on AssertionPool now.

.. change::
:tags: ticket: 1673, metadata
:tickets:

Added the ability to strip schema information when using
"tometadata" by passing "schema=None" as an argument. If schema
is not specified then the table's schema is retained.

.. change::
:tags: declarative
:tickets:

DeclarativeMeta exclusively uses cls.__dict__ (not dict\_)
as the source of class information; _as_declarative exclusively
uses the dict\_ passed to it as the source of class information
(which when using DeclarativeMeta is cls.__dict__). This should
in theory make it easier for custom metaclasses to modify
the state passed into _as_declarative.

.. change::
:tags: declarative
:tickets: 1707

declarative now accepts mixin classes directly, as a means
to provide common functional and column-based elements on
all subclasses, as well as a means to propagate a fixed
set of __table_args__ or __mapper_args__ to subclasses.
For custom combinations of __table_args__/__mapper_args__ from
an inherited mixin to local, descriptors can now be used.
New details are all up in the Declarative documentation.
Thanks to Chris Withers for putting up with my strife
on this.

.. change::
:tags: declarative
:tickets: 1393

the __mapper_args__ dict is copied when propagating to a subclass,
and is taken straight off the class __dict__ to avoid any
propagation from the parent. mapper inheritance already
propagates the things you want from the parent mapper.

.. change::
:tags: declarative
:tickets: 1732

An exception is raised when a single-table subclass specifies
a column that is already present on the base class.

.. change::
:tags: mysql
:tickets: 1655

Fixed reflection bug whereby when COLLATE was present,
nullable flag and server defaults would not be reflected.

.. change::
:tags: mysql
:tickets:

Fixed reflection of TINYINT(1) "boolean" columns defined with
integer flags like UNSIGNED.

.. change::
:tags: mysql
:tickets: 1668

Further fixes for the mysql-connector dialect.

.. change::
:tags: mysql
:tickets: 1496

Composite PK table on InnoDB where the "autoincrement" column
isn't first will emit an explicit "KEY" phrase within
CREATE TABLE thereby avoiding errors.

.. change::
:tags: mysql
:tickets: 1634

Added reflection/create table support for a wide range
of MySQL keywords.

.. change::
:tags: mysql
:tickets: 1580

Fixed import error which could occur reflecting tables on
a Windows host

.. change::
:tags: mssql
:tickets:

Re-established support for the pymssql dialect.

.. change::
:tags: mssql
:tickets:

Various fixes for implicit returning, reflection,
etc. - the MS-SQL dialects aren't quite complete
in 0.6 yet (but are close)

.. change::
:tags: mssql
:tickets: 1710

Added basic support for mxODBC.

.. change::
:tags: mssql
:tickets:

Removed the text_as_varchar option.

.. change::
:tags: oracle
:tickets:

"out" parameters require a type that is supported by
cx_oracle. An error will be raised if no cx_oracle
type can be found.

.. change::
:tags: oracle
:tickets:

Oracle 'DATE' now does not perform any result processing,
as the DATE type in Oracle stores full date+time objects,
that's what you'll get. Note that the generic types.Date
type *will* still call value.date() on incoming values,
however. When reflecting a table, the reflected type
will be 'DATE'.

.. change::
:tags: oracle
:tickets: 1670

Added preliminary support for Oracle's WITH_UNICODE
mode. At the very least this establishes initial
support for cx_Oracle with Python 3. When WITH_UNICODE
mode is used in Python 2.xx, a large and scary warning
is emitted asking that the user seriously consider
the usage of this difficult mode of operation.

.. change::
:tags: oracle
:tickets: 1712

The except_() method now renders as MINUS on Oracle,
which is more or less equivalent on that platform.

.. change::
:tags: oracle
:tickets: 651

Added support for rendering and reflecting
TIMESTAMP WITH TIME ZONE, i.e. TIMESTAMP(timezone=True).

.. change::
:tags: oracle
:tickets:

Oracle INTERVAL type can now be reflected.

.. change::
:tags: sqlite
:tickets: 1685

Added "native_datetime=True" flag to create_engine().
This will cause the DATE and TIMESTAMP types to skip
all bind parameter and result row processing, under
the assumption that PARSE_DECLTYPES has been enabled
on the connection. Note that this is not entirely
compatible with the "func.current_date()", which
will be returned as a string.

.. change::
:tags: sybase
:tickets:

Implemented a preliminary working dialect for Sybase,
with sub-implementations for Python-Sybase as well
as Pyodbc. Handles table
creates/drops and basic round trip functionality.
Does not yet include reflection or comprehensive
support of unicode/special expressions/etc.

.. change::
:tags: examples
:tickets:

Changed the beaker cache example a bit to have a separate
RelationCache option for lazyload caching. This object
does a lookup among any number of potential attributes
more efficiently by grouping several into a common structure.
Both FromCache and RelationCache are simpler individually.

.. change::
:tags: documentation
:tickets: 1700

Major cleanup work in the docs to link class, function, and
method names into the API docs.

.. changelog::

0.6beta1

:released: Wed Feb 03 2010

.. change::
:tags: release, major
:tickets:

For the full set of feature descriptions, see
https://docs.sqlalchemy.org/en/latest/changelog/migration_06.html .
This document is a work in progress.

.. change::
:tags: release, major
:tickets:

All bug fixes and feature enhancements from the most
recent 0.5 version and below are also included within 0.6.

.. change::
:tags: release, major
:tickets:

Platforms targeted now include Python 2.4/2.5/2.6, Python
3.1, Jython2.5.

.. change::
:tags: orm
:tickets:

Changes to query.update() and query.delete():
- the 'expire' option on query.update() has been renamed to
'fetch', thus matching that of query.delete().
'expire' is deprecated and issues a warning.

- query.update() and query.delete() both default to
'evaluate' for the synchronize strategy.

- the 'synchronize' strategy for update() and delete()
raises an error on failure. There is no implicit fallback
onto "fetch". Failure of evaluation is based on the
structure of criteria, so success/failure is deterministic
based on code structure.

.. change::
:tags: orm
:tickets: 1186, 1492, 1544

Enhancements on many-to-one relations:
- many-to-one relations now fire off a lazyload in fewer
cases, including in most cases will not fetch the "old"
value when a new one is replaced.

- many-to-one relation to a joined-table subclass now uses
get() for a simple load (known as the "use_get"
condition), i.e. Related->Sub(Base), without the need to
redefine the primaryjoin condition in terms of the base
table.

- specifying a foreign key with a declarative column, i.e.
ForeignKey(MyRelatedClass.id) doesn't break the "use_get"
condition from taking place

- relation(), eagerload(), and eagerload_all() now feature
an option called "innerjoin". Specify `True` or `False` to
control whether an eager join is constructed as an INNER
or OUTER join. Default is `False` as always. The mapper
options will override whichever setting is specified on
relation(). Should generally be set for many-to-one, not
nullable foreign key relations to allow improved join
performance.

- the behavior of eagerloading such that the main query is
wrapped in a subquery when LIMIT/OFFSET are present now
makes an exception for the case when all eager loads are
many-to-one joins. In those cases, the eager joins are
against the parent table directly along with the
limit/offset without the extra overhead of a subquery,
since a many-to-one join does not add rows to the result.

.. change::
:tags: orm
:tickets:

Enhancements / Changes on Session.merge():

.. change::
:tags: orm
:tickets:

the "dont_load=True" flag on Session.merge() is deprecated
and is now "load=False".

.. change::
:tags: orm
:tickets:

Session.merge() is performance optimized, using half the
call counts for "load=False" mode compared to 0.5 and
significantly fewer SQL queries in the case of collections
for "load=True" mode.

.. change::
:tags: orm
:tickets:

merge() will not issue a needless merge of attributes if the
given instance is the same instance which is already present.

.. change::
:tags: orm
:tickets:

merge() now also merges the "options" associated with a given
state, i.e. those passed through query.options() which follow
along with an instance, such as options to eagerly- or
lazyily- load various attributes. This is essential for
the construction of highly integrated caching schemes. This
is a subtle behavioral change vs. 0.5.

.. change::
:tags: orm
:tickets:

A bug was fixed regarding the serialization of the "loader
path" present on an instance's state, which is also necessary
when combining the usage of merge() with serialized state
and associated options that should be preserved.

.. change::
:tags: orm
:tickets:

The all new merge() is showcased in a new comprehensive
example of how to integrate Beaker with SQLAlchemy. See
the notes in the "examples" note below.

.. change::
:tags: orm
:tickets: 1362

Primary key values can now be changed on a joined-table inheritance
object, and ON UPDATE CASCADE will be taken into account when
the flush happens. Set the new "passive_updates" flag to False
on mapper() when using SQLite or MySQL/MyISAM.

.. change::
:tags: orm
:tickets: 1671

flush() now detects when a primary key column was updated by
an ON UPDATE CASCADE operation from another primary key, and
can then locate the row for a subsequent UPDATE on the new PK
value. This occurs when a relation() is there to establish
the relationship as well as passive_updates=True.

.. change::
:tags: orm
:tickets:

the "save-update" cascade will now cascade the pending *removed*
values from a scalar or collection attribute into the new session
during an add() operation. This so that the flush() operation
will also delete or modify rows of those disconnected items.

.. change::
:tags: orm
:tickets: 1531

Using a "dynamic" loader with a "secondary" table now produces
a query where the "secondary" table is *not* aliased. This
allows the secondary Table object to be used in the "order_by"
attribute of the relation(), and also allows it to be used
in filter criterion against the dynamic relation.

.. change::
:tags: orm
:tickets: 1643

relation() with uselist=False will emit a warning when
an eager or lazy load locates more than one valid value for
the row. This may be due to primaryjoin/secondaryjoin
conditions which aren't appropriate for an eager LEFT OUTER
JOIN or for other conditions.

.. change::
:tags: orm
:tickets: 1633

an explicit check occurs when a synonym() is used with
map_column=True, when a ColumnProperty (deferred or otherwise)
exists separately in the properties dictionary sent to mapper
with the same keyname. Instead of silently replacing
the existing property (and possible options on that property),
an error is raised.

.. change::
:tags: orm
:tickets:

a "dynamic" loader sets up its query criterion at construction
time so that the actual query is returned from non-cloning
accessors like "statement".

.. change::
:tags: orm
:tickets:

the "named tuple" objects returned when iterating a
Query() are now pickleable.

.. change::
:tags: orm
:tickets: 1542

mapping to a select() construct now requires that you
make an alias() out of it distinctly. This to eliminate
confusion over such issues as

.. change::
:tags: orm
:tickets: 1537

query.join() has been reworked to provide more consistent
behavior and more flexibility (includes)

.. change::
:tags: orm
:tickets:

query.select_from() accepts multiple clauses to produce
multiple comma separated entries within the FROM clause.
Useful when selecting from multiple-homed join() clauses.

.. change::
:tags: orm
:tickets:

query.select_from() also accepts mapped classes, aliased()
constructs, and mappers as arguments. In particular this
helps when querying from multiple joined-table classes to ensure
the full join gets rendered.

.. change::
:tags: orm
:tickets: 1135

query.get() can be used with a mapping to an outer join
where one or more of the primary key values are None.

.. change::
:tags: orm
:tickets: 1568

query.from_self(), query.union(), others which do a
"SELECT * from (SELECT...)" type of nesting will do
a better job translating column expressions within the subquery
to the columns clause of the outer query. This is
potentially backwards incompatible with 0.5, in that this
may break queries with literal expressions that do not have labels
applied (i.e. literal('foo'), etc.)

.. change::
:tags: orm
:tickets: 1622

relation primaryjoin and secondaryjoin now check that they
are column-expressions, not just clause elements. this prohibits
things like FROM expressions being placed there directly.

.. change::
:tags: orm
:tickets: 1415

`expression.null()` is fully understood the same way
None is when comparing an object/collection-referencing
attribute within query.filter(), filter_by(), etc.

.. change::
:tags: orm
:tickets: 1052

added "make_transient()" helper function which transforms a
persistent/ detached instance into a transient one (i.e.
deletes the instance_key and removes from any session.)

.. change::
:tags: orm
:tickets: 1339

the allow_null_pks flag on mapper() is deprecated, and
the feature is turned "on" by default. This means that
a row which has a non-null value for any of its primary key
columns will be considered an identity. The need for this
scenario typically only occurs when mapping to an outer join.

.. change::
:tags: orm
:tickets:

the mechanics of "backref" have been fully merged into the
finer grained "back_populates" system, and take place entirely
within the _generate_backref() method of RelationProperty. This
makes the initialization procedure of RelationProperty
simpler and allows easier propagation of settings (such as from
subclasses of RelationProperty) into the reverse reference.
The internal BackRef() is gone and backref() returns a plain
tuple that is understood by RelationProperty.

.. change::
:tags: orm
:tickets: 1569

The version_id_col feature on mapper() will raise a warning when
used with dialects that don't support "rowcount" adequately.

.. change::
:tags: orm
:tickets:

added "execution_options()" to Query, to so options can be
passed to the resulting statement. Currently only
Select-statements have these options, and the only option
used is "stream_results", and the only dialect which knows
"stream_results" is psycopg2.

.. change::
:tags: orm
:tickets:

Query.yield_per() will set the "stream_results" statement
option automatically.

.. change::
:tags: orm
:tickets:

Deprecated or removed:
* 'allow_null_pks' flag on mapper() is deprecated. It does
nothing now and the setting is "on" in all cases.
* 'transactional' flag on sessionmaker() and others is
removed. Use 'autocommit=True' to indicate 'transactional=False'.
* 'polymorphic_fetch' argument on mapper() is removed.
Loading can be controlled using the 'with_polymorphic'
option.
* 'select_table' argument on mapper() is removed. Use
'with_polymorphic=("*", <some selectable>)' for this
functionality.
* 'proxy' argument on synonym() is removed. This flag
did nothing throughout 0.5, as the "proxy generation"
behavior is now automatic.
* Passing a single list of elements to eagerload(),
eagerload_all(), contains_eager(), lazyload(),
defer(), and undefer() instead of multiple positional
\*args is deprecated.
* Passing a single list of elements to query.order_by(),
query.group_by(), query.join(), or query.outerjoin()
instead of multiple positional \*args is deprecated.
* query.iterate_instances() is removed. Use query.instances().
* Query.query_from_parent() is removed. Use the
sqlalchemy.orm.with_parent() function to produce a
"parent" clause, or alternatively query.with_parent().
* query._from_self() is removed, use query.from_self()
instead.
* the "comparator" argument to composite() is removed.
Use "comparator_factory".
* RelationProperty._get_join() is removed.
* the 'echo_uow' flag on Session is removed. Use
logging on the "sqlalchemy.orm.unitofwork" name.
* session.clear() is removed. use session.expunge_all().
* session.save(), session.update(), session.save_or_update()
are removed. Use session.add() and session.add_all().
* the "objects" flag on session.flush() remains deprecated.
* the "dont_load=True" flag on session.merge() is deprecated
in favor of "load=False".
* ScopedSession.mapper remains deprecated. See the
usage recipe at
https://www.sqlalchemy.org/trac/wiki/UsageRecipes/SessionAwareMapper
* passing an InstanceState (internal SQLAlchemy state object) to
attributes.init_collection() or attributes.get_history() is
deprecated. These functions are public API and normally
expect a regular mapped object instance.
* the 'engine' parameter to declarative_base() is removed.
Use the 'bind' keyword argument.

.. change::
:tags: sql
:tickets:

the "autocommit" flag on select() and text() as well
as select().autocommit() are deprecated - now call
.execution_options(autocommit=True) on either of those
constructs, also available directly on Connection and orm.Query.

.. change::
:tags: sql
:tickets:

the autoincrement flag on column now indicates the column
which should be linked to cursor.lastrowid, if that method
is used. See the API docs for details.

.. change::
:tags: sql
:tickets: 1566

an executemany() now requires that all bound parameter
sets require that all keys are present which are
present in the first bound parameter set. The structure
and behavior of an insert/update statement is very much
determined by the first parameter set, including which
defaults are going to fire off, and a minimum of
guesswork is performed with all the rest so that performance
is not impacted. For this reason defaults would otherwise
silently "fail" for missing parameters, so this is now guarded
against.

.. change::
:tags: sql
:tickets:

returning() support is native to insert(), update(),
delete(). Implementations of varying levels of
functionality exist for PostgreSQL, Firebird, MSSQL and
Oracle. returning() can be called explicitly with column
expressions which are then returned in the resultset,
usually via fetchone() or first().

insert() constructs will also use RETURNING implicitly to
get newly generated primary key values, if the database
version in use supports it (a version number check is
performed). This occurs if no end-user returning() was
specified.

.. change::
:tags: sql
:tickets: 1665

union(), intersect(), except() and other "compound" types
of statements have more consistent behavior w.r.t.
parenthesizing. Each compound element embedded within
another will now be grouped with parenthesis - previously,
the first compound element in the list would not be grouped,
as SQLite doesn't like a statement to start with
parenthesis. However, PostgreSQL in particular has
precedence rules regarding INTERSECT, and it is
more consistent for parenthesis to be applied equally
to all sub-elements. So now, the workaround for SQLite
is also what the workaround for PG was previously -
when nesting compound elements, the first one usually needs
".alias().select()" called on it to wrap it inside
of a subquery.

.. change::
:tags: sql
:tickets: 1579

insert() and update() constructs can now embed bindparam()
objects using names that match the keys of columns. These
bind parameters will circumvent the usual route to those
keys showing up in the VALUES or SET clause of the generated
SQL.

.. change::
:tags: sql
:tickets: 1524

the Binary type now returns data as a Python string
(or a "bytes" type in Python 3), instead of the built-
in "buffer" type. This allows symmetric round trips
of binary data.

.. change::
:tags: sql
:tickets:

Added a tuple_() construct, allows sets of expressions
to be compared to another set, typically with IN against
composite primary keys or similar. Also accepts an
IN with multiple columns. The "scalar select can
have only one column" error message is removed - will
rely upon the database to report problems with
col mismatch.

.. change::
:tags: sql
:tickets:

User-defined "default" and "onupdate" callables which
accept a context should now call upon
"context.current_parameters" to get at the dictionary
of bind parameters currently being processed. This
dict is available in the same way regardless of
single-execute or executemany-style statement execution.

.. change::
:tags: sql
:tickets: 1428

multi-part schema names, i.e. with dots such as
"dbo.master", are now rendered in select() labels
with underscores for dots, i.e. "dbo_master_table_column".
This is a "friendly" label that behaves better
in result sets.

.. change::
:tags: sql
:tickets:

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.

.. change::
:tags: sql
:tickets: 1628

calling expr.in_([]), i.e. with an empty list, emits a warning
before issuing the usual "expr != expr" clause. The
"expr != expr" can be very expensive, and it's preferred
that the user not issue in_() if the list is empty,
instead simply not querying, or modifying the criterion
as appropriate for more complex situations.

.. change::
:tags: sql
:tickets:

Added "execution_options()" to select()/text(), which set the
default options for the Connection. See the note in "engines".

.. change::
:tags: sql
:tickets: 1131

Deprecated or removed:
* "scalar" flag on select() is removed, use
select.as_scalar().
* "shortname" attribute on bindparam() is removed.
* postgres_returning, firebird_returning flags on
insert(), update(), delete() are deprecated, use
the new returning() method.
* fold_equivalents flag on join is deprecated (will remain
until is implemented)

.. change::
:tags: engines
:tickets: 443

transaction isolation level may be specified with
create_engine(... isolation_level="..."); available on
postgresql and sqlite.

.. change::
:tags: engines
:tickets:

Connection has execution_options(), generative method
which accepts keywords that affect how the statement
is executed w.r.t. the DBAPI. Currently supports
"stream_results", causes psycopg2 to use a server
side cursor for that statement, as well as
"autocommit", which is the new location for the "autocommit"
option from select() and text(). select() and
text() also have .execution_options() as well as
ORM Query().

.. change::
:tags: engines
:tickets: 1630

fixed the import for entrypoint-driven dialects to
not rely upon silly tb_info trick to determine import
error status.

.. change::
:tags: engines
:tickets:

added first() method to ResultProxy, returns first row and
closes result set immediately.

.. change::
:tags: engines
:tickets:

RowProxy objects are now pickleable, i.e. the object returned
by result.fetchone(), result.fetchall() etc.

.. change::
:tags: engines
:tickets:

RowProxy no longer has a close() method, as the row no longer
maintains a reference to the parent. Call close() on
the parent ResultProxy instead, or use autoclose.

.. change::
:tags: engines
:tickets: 1586

ResultProxy internals have been overhauled to greatly reduce
method call counts when fetching columns. Can provide a large
speed improvement (up to more than 100%) when fetching large
result sets. The improvement is larger when fetching columns
that have no type-level processing applied and when using
results as tuples (instead of as dictionaries). Many
thanks to Elixir's Gaëtan de Menten for this dramatic
improvement !

.. change::
:tags: engines
:tickets:

Databases which rely upon postfetch of "last inserted id"
to get at a generated sequence value (i.e. MySQL, MS-SQL)
now work correctly when there is a composite primary key
where the "autoincrement" column is not the first primary
key column in the table.

.. change::
:tags: engines
:tickets:

the last_inserted_ids() method has been renamed to the
descriptor "inserted_primary_key".

.. change::
:tags: engines
:tickets: 1554

setting echo=False on create_engine() now sets the loglevel
to WARN instead of NOTSET. This so that logging can be
disabled for a particular engine even if logging
for "sqlalchemy.engine" is enabled overall. Note that the
default setting of "echo" is `None`.

.. change::
:tags: engines
:tickets:

ConnectionProxy now has wrapper methods for all transaction
lifecycle events, including begin(), rollback(), commit()
begin_nested(), begin_prepared(), prepare(), release_savepoint(),
etc.

.. change::
:tags: engines
:tickets:

Connection pool logging now uses both INFO and DEBUG
log levels for logging. INFO is for major events such
as invalidated connections, DEBUG for all the acquire/return
logging. `echo_pool` can be False, None, True or "debug"
the same way as `echo` works.

.. change::
:tags: engines
:tickets: 1621

All pyodbc-dialects now support extra pyodbc-specific
kw arguments 'ansi', 'unicode_results', 'autocommit'.

.. change::
:tags: engines
:tickets:

the "threadlocal" engine has been rewritten and simplified
and now supports SAVEPOINT operations.

.. change::
:tags: engines
:tickets:

deprecated or removed
* result.last_inserted_ids() is deprecated. Use
result.inserted_primary_key
* dialect.get_default_schema_name(connection) is now
public via dialect.default_schema_name.
* the "connection" argument from engine.transaction() and
engine.run_callable() is removed - Connection itself
now has those methods. All four methods accept
\*args and \**kwargs which are passed to the given callable,
as well as the operating connection.

.. change::
:tags: schema
:tickets: 1541

the `__contains__()` method of `MetaData` now accepts
strings or `Table` objects as arguments. If given
a `Table`, the argument is converted to `table.key` first,
i.e. "[schemaname.]<tablename>"

.. change::
:tags: schema
:tickets:

deprecated MetaData.connect() and
ThreadLocalMetaData.connect() have been removed - send
the "bind" attribute to bind a metadata.

.. change::
:tags: schema
:tickets:

deprecated metadata.table_iterator() method removed (use
sorted_tables)

.. change::
:tags: schema
:tickets:

deprecated PassiveDefault - use DefaultClause.

.. change::
:tags: schema
:tickets:

the "metadata" argument is removed from DefaultGenerator
and subclasses, but remains locally present on Sequence,
which is a standalone construct in DDL.

.. change::
:tags: schema
:tickets:

Removed public mutability from Index and Constraint
objects:

* ForeignKeyConstraint.append_element()
* Index.append_column()
* UniqueConstraint.append_column()
* PrimaryKeyConstraint.add()
* PrimaryKeyConstraint.remove()

These should be constructed declaratively (i.e. in one
construction).

.. change::
:tags: schema
:tickets: 1545

The "start" and "increment" attributes on Sequence now
generate "START WITH" and "INCREMENT BY" by default,
on Oracle and PostgreSQL. Firebird doesn't support
these keywords right now.

.. change::
:tags: schema
:tickets:

UniqueConstraint, Index, PrimaryKeyConstraint all accept
lists of column names or column objects as arguments.

.. change::
:tags: schema
:tickets:

Other removed things:
- Table.key (no idea what this was for)
- Table.primary_key is not assignable - use
table.append_constraint(PrimaryKeyConstraint(...))
- Column.bind (get via column.table.bind)
- Column.metadata (get via column.table.metadata)
- Column.sequence (use column.default)
- ForeignKey(constraint=some_parent) (is now private _constraint)

.. change::
:tags: schema
:tickets:

The use_alter flag on ForeignKey is now a shortcut option
for operations that can be hand-constructed using the
DDL() event system. A side effect of this refactor is
that ForeignKeyConstraint objects with use_alter=True
will *not* be emitted on SQLite, which does not support
ALTER for foreign keys.

.. change::
:tags: schema
:tickets: 1605

ForeignKey and ForeignKeyConstraint objects now correctly
copy() all their public keyword arguments.

.. change::
:tags: reflection/inspection
:tickets:

Table reflection has been expanded and generalized into
a new API called "sqlalchemy.engine.reflection.Inspector".
The Inspector object provides fine-grained information about
a wide variety of schema information, with room for expansion,
including table names, column names, view definitions, sequences,
indexes, etc.

.. change::
:tags: reflection/inspection
:tickets:

Views are now reflectable as ordinary Table objects. The same
Table constructor is used, with the caveat that "effective"
primary and foreign key constraints aren't part of the reflection
results; these have to be specified explicitly if desired.

.. change::
:tags: reflection/inspection
:tickets:

The existing autoload=True system now uses Inspector underneath
so that each dialect need only return "raw" data about tables
and other objects - Inspector is the single place that information
is compiled into Table objects so that consistency is at a maximum.

.. change::
:tags: ddl
:tickets:

the DDL system has been greatly expanded. the DDL() class
now extends the more generic DDLElement(), which forms the basis
of many new constructs:

- CreateTable()
- DropTable()
- AddConstraint()
- DropConstraint()
- CreateIndex()
- DropIndex()
- CreateSequence()
- DropSequence()

These support "on" and "execute-at()" just like plain DDL()
does. User-defined DDLElement subclasses can be created and
linked to a compiler using the sqlalchemy.ext.compiler extension.

.. change::
:tags: ddl
:tickets:

The signature of the "on" callable passed to DDL() and
DDLElement() is revised as follows:

ddl
the DDLElement object itself
event
the string event name.
target
previously "schema_item", the Table or MetaData object triggering the event.
connection
the Connection object in use for the operation.
\**kw
keyword arguments. In the case of MetaData before/after
create/drop, the list of Table objects for which
CREATE/DROP DDL is to be issued is passed as the kw
argument "tables". This is necessary for metadata-level
DDL that is dependent on the presence of specific tables.

The "schema_item" attribute of DDL has been renamed to
"target".

.. change::
:tags: dialect, refactor
:tickets:

Dialect modules are now broken into database dialects
plus DBAPI implementations. Connect URLs are now
preferred to be specified using dialect+driver://...,
i.e. "mysql+mysqldb://scott:tigerlocalhost/test". See
the 0.6 documentation for examples.

.. change::
:tags: dialect, refactor
:tickets:

the setuptools entrypoint for external dialects is now
called "sqlalchemy.dialects".

.. change::
:tags: dialect, refactor
:tickets:

the "owner" keyword argument is removed from Table. Use
"schema" to represent any namespaces to be prepended to
the table name.

.. change::
:tags: dialect, refactor
:tickets:

server_version_info becomes a static attribute.

.. change::
:tags: dialect, refactor
:tickets:

dialects receive an initialize() event on initial
connection to determine connection properties.

.. change::
:tags: dialect, refactor
:tickets:

dialects receive a visit_pool event have an opportunity
to establish pool listeners.

.. change::
:tags: dialect, refactor
:tickets:

cached TypeEngine classes are cached per-dialect class
instead of per-dialect.

.. change::
:tags: dialect, refactor
:tickets:

new UserDefinedType should be used as a base class for
new types, which preserves the 0.5 behavior of
get_col_spec().

.. change::
:tags: dialect, refactor
:tickets:

The result_processor() method of all type classes now
accepts a second argument "coltype", which is the DBAPI
type argument from cursor.description. This argument
can help some types decide on the most efficient processing
of result values.

.. change::
:tags: dialect, refactor
:tickets:

Deprecated Dialect.get_params() removed.

.. change::
:tags: dialect, refactor
:tickets:

Dialect.get_rowcount() has been renamed to a descriptor
"rowcount", and calls cursor.rowcount directly. Dialects
which need to hardwire a rowcount in for certain calls
should override the method to provide different behavior.

.. change::
:tags: dialect, refactor
:tickets: 1566

DefaultRunner and subclasses have been removed. The job
of this object has been simplified and moved into
ExecutionContext. Dialects which support sequences should
add a `fire_sequence()` method to their execution context
implementation.

.. change::
:tags: dialect, refactor
:tickets:

Functions and operators generated by the compiler now use
(almost) regular dispatch functions of the form
"visit_<opname>" and "visit_<funcname>_fn" to provide
customed processing. This replaces the need to copy the
"functions" and "operators" dictionaries in compiler
subclasses with straightforward visitor methods, and also
allows compiler subclasses complete control over
rendering, as the full _Function or _BinaryExpression
object is passed in.

.. change::
:tags: postgresql
:tickets:

New dialects: pg8000, zxjdbc, and pypostgresql
on py3k.

.. change::
:tags: postgresql
:tickets:

The "postgres" dialect is now named "postgresql" !
Connection strings look like:

postgresql://scott:tigerlocalhost/test
postgresql+pg8000://scott:tigerlocalhost/test

The "postgres" name remains for backwards compatibility
in the following ways:

- There is a "postgres.py" dummy dialect which
allows old URLs to work, i.e.
postgres://scott:tigerlocalhost/test

- The "postgres" name can be imported from the old
"databases" module, i.e. "from
sqlalchemy.databases import postgres" as well as
"dialects", "from sqlalchemy.dialects.postgres
import base as pg", will send a deprecation
warning.

- Special expression arguments are now named
"postgresql_returning" and "postgresql_where", but
the older "postgres_returning" and
"postgres_where" names still work with a
deprecation warning.

.. change::
:tags: postgresql
:tickets:

"postgresql_where" now accepts SQL expressions which
can also include literals, which will be quoted as needed.

.. change::
:tags: postgresql
:tickets:

The psycopg2 dialect now uses psycopg2's "unicode extension"
on all new connections, which allows all String/Text/etc.
types to skip the need to post-process bytestrings into
unicode (an expensive step due to its volume). Other
dialects which return unicode natively (pg8000, zxjdbc)
also skip unicode post-processing.

.. change::
:tags: postgresql
:tickets: 1511

Added new ENUM type, which exists as a schema-level
construct and extends the generic Enum type. Automatically
associates itself with tables and their parent metadata
to issue the appropriate CREATE TYPE/DROP TYPE
commands as needed, supports unicode labels, supports
reflection.

.. change::
:tags: postgresql
:tickets:

INTERVAL supports an optional "precision" argument
corresponding to the argument that PG accepts.

.. change::
:tags: postgresql
:tickets:

using new dialect.initialize() feature to set up
version-dependent behavior.

.. change::
:tags: postgresql
:tickets: 1279

somewhat better support for % signs in table/column names;
psycopg2 can't handle a bind parameter name of
%(foobar)s however and SQLA doesn't want to add overhead
just to treat that one non-existent use case.

.. change::
:tags: postgresql
:tickets: 1516

Inserting NULL into a primary key + foreign key column
will allow the "not null constraint" error to raise,
not an attempt to execute a nonexistent "col_id_seq"
sequence.

.. change::
:tags: postgresql
:tickets:

autoincrement SELECT statements, i.e. those which
select from a procedure that modifies rows, now work
with server-side cursor mode (the named cursor isn't
used for such statements.)

.. change::
:tags: postgresql
:tickets: 1636

postgresql dialect can properly detect pg "devel" version
strings, i.e. "8.5devel"

.. change::
:tags: postgresql
:tickets: 1619

The psycopg2 now respects the statement option
"stream_results". This option overrides the connection setting
"server_side_cursors". If true, server side cursors will be
used for the statement. If false, they will not be used, even
if "server_side_cursors" is true on the
connection.

.. change::
:tags: mysql
:tickets:

New dialects: oursql, a new native dialect,
MySQL Connector/Python, a native Python port of MySQLdb,
and of course zxjdbc on Jython.

.. change::
:tags: mysql
:tickets:

VARCHAR/NVARCHAR will not render without a length, raises
an error before passing to MySQL. Doesn't impact
CAST since VARCHAR is not allowed in MySQL CAST anyway,
the dialect renders CHAR/NCHAR in those cases.

.. change::
:tags: mysql
:tickets:

all the _detect_XXX() functions now run once underneath
dialect.initialize()

.. change::
:tags: mysql
:tickets: 1279

somewhat better support for % signs in table/column names;
MySQLdb can't handle % signs in SQL when executemany() is used,
and SQLA doesn't want to add overhead just to treat that one
non-existent use case.

.. change::
:tags: mysql
:tickets:

the BINARY and MSBinary types now generate "BINARY" in all
cases. Omitting the "length" parameter will generate
"BINARY" with no length. Use BLOB to generate an unlengthed
binary column.

.. change::
:tags: mysql
:tickets:

the "quoting='quoted'" argument to MSEnum/ENUM is deprecated.
It's best to rely upon the automatic quoting.

.. change::
:tags: mysql
:tickets:

ENUM now subclasses the new generic Enum type, and also handles
unicode values implicitly, if the given labelnames are unicode
objects.

.. change::
:tags: mysql
:tickets: 1539

a column of type TIMESTAMP now defaults to NULL if
"nullable=False" is not passed to Column(), and no default
is present. This is now consistent with all other types,
and in the case of TIMESTAMP explicitly renders "NULL"
due to MySQL's "switching" of default nullability
for TIMESTAMP columns.

.. change::
:tags: oracle
:tickets:

unit tests pass 100% with cx_oracle !

.. change::
:tags: oracle
:tickets:

support for cx_Oracle's "native unicode" mode which does
not require NLS_LANG to be set. Use the latest 5.0.2 or
later of cx_oracle.

.. change::
:tags: oracle
:tickets:

an NCLOB type is added to the base types.

.. change::
:tags: oracle
:tickets:

use_ansi=False won't leak into the FROM/WHERE clause of
a statement that's selecting from a subquery that also
uses JOIN/OUTERJOIN.

.. change::
:tags: oracle
:tickets: 1467

added native INTERVAL type to the dialect. This supports
only the DAY TO SECOND interval type so far due to lack
of support in cx_oracle for YEAR TO MONTH.

.. change::
:tags: oracle
:tickets:

usage of the CHAR type results in cx_oracle's
FIXED_CHAR dbapi type being bound to statements.

.. change::
:tags: oracle
:tickets: 885

the Oracle dialect now features NUMBER which intends
to act justlike Oracle's NUMBER type. It is the primary
numeric type returned by table reflection and attempts
to return Decimal()/float/int based on the precision/scale
parameters.

.. change::
:tags: oracle
:tickets:

func.char_length is a generic function for LENGTH

.. change::
:tags: oracle
:tickets:

ForeignKey() which includes onupdate=<value> will emit a
warning, not emit ON UPDATE CASCADE which is unsupported
by oracle

.. change::
:tags: oracle
:tickets:

the keys() method of RowProxy() now returns the result
column names *normalized* to be SQLAlchemy case
insensitive names. This means they will be lower case for
case insensitive names, whereas the DBAPI would normally
return them as UPPERCASE names. This allows row keys() to
be compatible with further SQLAlchemy operations.

.. change::
:tags: oracle
:tickets:

using new dialect.initialize() feature to set up
version-dependent behavior.

.. change::
:tags: oracle
:tickets: 1125

using types.BigInteger with Oracle will generate
NUMBER(19)

.. change::
:tags: oracle
:tickets:

"case sensitivity" feature will detect an all-lowercase
case-sensitive column name during reflect and add
"quote=True" to the generated Column, so that proper
quoting is maintained.

.. change::
:tags: firebird
:tickets:

the keys() method of RowProxy() now returns the result
column names *normalized* to be SQLAlchemy case
insensitive names. This means they will be lower case for
case insensitive names, whereas the DBAPI would normally
return them as UPPERCASE names. This allows row keys() to
be compatible with further SQLAlchemy operations.

.. change::
:tags: firebird
:tickets:

using new dialect.initialize() feature to set up
version-dependent behavior.

.. change::
:tags: firebird
:tickets:

"case sensitivity" feature will detect an all-lowercase
case-sensitive column name during reflect and add
"quote=True" to the generated Column, so that proper
quoting is maintained.

.. change::
:tags: mssql
:tickets:

MSSQL + Pyodbc + FreeTDS now works for the most part,
with possible exceptions regarding binary data as well as
unicode schema identifiers.

.. change::
:tags: mssql
:tickets:

the "has_window_funcs" flag is removed. LIMIT/OFFSET
usage will use ROW NUMBER as always, and if on an older
version of SQL Server, the operation fails. The behavior
is exactly the same except the error is raised by SQL
server instead of the dialect, and no flag setting is
required to enable it.

.. change::
:tags: mssql
:tickets:

the "auto_identity_insert" flag is removed. This feature
always takes effect when an INSERT statement overrides a
column that is known to have a sequence on it. As with
"has_window_funcs", if the underlying driver doesn't
support this, then you can't do this operation in any
case, so there's no point in having a flag.

.. change::
:tags: mssql
:tickets:

using new dialect.initialize() feature to set up
version-dependent behavior.

.. change::
:tags: mssql
:tickets:

removed references to sequence which is no longer used.
implicit identities in mssql work the same as implicit
sequences on any other dialects. Explicit sequences are
enabled through the use of "default=Sequence()". See
the MSSQL dialect documentation for more information.

.. change::
:tags: sqlite
:tickets:

DATE, TIME and DATETIME types can now take optional storage_format
and regexp argument. storage_format can be used to store those types
using a custom string format. regexp allows to use a custom regular
expression to match string values from the database.

.. change::
:tags: sqlite
:tickets:

Time and DateTime types now use by a default a stricter regular
expression to match strings from the database. Use the regexp
argument if you are using data stored in a legacy format.

.. change::
:tags: sqlite
:tickets:

__legacy_microseconds__ on SQLite Time and DateTime types is not
supported anymore. You should use the storage_format argument
instead.

.. change::
:tags: sqlite
:tickets:

Date, Time and DateTime types are now stricter in what they accept as
bind parameters: Date type only accepts date objects (and datetime
ones, because they inherit from date), Time only accepts time
objects, and DateTime only accepts date and datetime objects.

.. change::
:tags: sqlite
:tickets: 1016

Table() supports a keyword argument "sqlite_autoincrement", which
applies the SQLite keyword "AUTOINCREMENT" to the single integer
primary key column when generating DDL. Will prevent generation of
a separate PRIMARY KEY constraint.

.. change::
:tags: types
:tickets:

The construction of types within dialects has been totally
overhauled. Dialects now define publicly available types
as UPPERCASE names exclusively, and internal implementation
types using underscore identifiers (i.e. are private).
The system by which types are expressed in SQL and DDL
has been moved to the compiler system. This has the
effect that there are much fewer type objects within
most dialects. A detailed document on this architecture
for dialect authors is in
lib/sqlalchemy/dialects/type_migration_guidelines.txt .

.. change::
:tags: types
:tickets:

Types no longer make any guesses as to default
parameters. In particular, Numeric, Float, NUMERIC,
FLOAT, DECIMAL don't generate any length or scale unless
specified.

.. change::
:tags: types
:tickets: 1664

types.Binary is renamed to types.LargeBinary, it only
produces BLOB, BYTEA, or a similar "long binary" type.
New base BINARY and VARBINARY
types have been added to access these MySQL/MS-SQL specific
types in an agnostic way.

.. change::
:tags: types
:tickets:

String/Text/Unicode types now skip the unicode() check
on each result column value if the dialect has
detected the DBAPI as returning Python unicode objects
natively. This check is issued on first connect
using "SELECT CAST 'some text' AS VARCHAR(10)" or
equivalent, then checking if the returned object
is a Python unicode. This allows vast performance
increases for native-unicode DBAPIs, including
pysqlite/sqlite3, psycopg2, and pg8000.

.. change::
:tags: types
:tickets:

Most types result processors have been checked for possible speed
improvements. Specifically, the following generic types have been
optimized, resulting in varying speed improvements:
Unicode, PickleType, Interval, TypeDecorator, Binary.
Also the following dbapi-specific implementations have been improved:
Time, Date and DateTime on Sqlite, ARRAY on PostgreSQL,
Time on MySQL, Numeric(as_decimal=False) on MySQL, oursql and
pypostgresql, DateTime on cx_oracle and LOB-based types on cx_oracle.

.. change::
:tags: types
:tickets:

Reflection of types now returns the exact UPPERCASE
type within types.py, or the UPPERCASE type within
the dialect itself if the type is not a standard SQL
type. This means reflection now returns more accurate
information about reflected types.

.. change::
:tags: types
:tickets: 1511, 1109

Added a new Enum generic type. Enum is a schema-aware object
to support databases which require specific DDL in order to
use enum or equivalent; in the case of PG it handles the
details of `CREATE TYPE`, and on other databases without
native enum support will by generate VARCHAR + an inline CHECK
constraint to enforce the enum.

.. change::
:tags: types
:tickets: 1467

The Interval type includes a "native" flag which controls
if native INTERVAL types (postgresql + oracle) are selected
if available, or not. "day_precision" and "second_precision"
arguments are also added which propagate as appropriately
to these native types. Related to.

.. change::
:tags: types
:tickets: 1589

The Boolean type, when used on a backend that doesn't
have native boolean support, will generate a CHECK
constraint "col IN (0, 1)" along with the int/smallint-
based column type. This can be switched off if
desired with create_constraint=False.
Note that MySQL has no native boolean *or* CHECK constraint
support so this feature isn't available on that platform.

.. change::
:tags: types
:tickets:

PickleType now uses == for comparison of values when
mutable=True, unless the "comparator" argument with a
comparison function is specified to the type. Objects
being pickled will be compared based on identity (which
defeats the purpose of mutable=True) if __eq__() is not
overridden or a comparison function is not provided.

.. change::
:tags: types
:tickets:

The default "precision" and "scale" arguments of Numeric
and Float have been removed and now default to None.
NUMERIC and FLOAT will be rendered with no numeric
arguments by default unless these values are provided.

.. change::
:tags: types
:tickets:

AbstractType.get_search_list() is removed - the games
that was used for are no longer necessary.

.. change::
:tags: types
:tickets: 1125

Added a generic BigInteger type, compiles to
BIGINT or NUMBER(19).

.. change::
:tags: types
:tickets:

sqlsoup has been overhauled to explicitly support an 0.5 style
session, using autocommit=False, autoflush=True. Default
behavior of SQLSoup now requires the usual usage of commit()
and rollback(), which have been added to its interface. An
explicit Session or scoped_session can be passed to the
constructor, allowing these arguments to be overridden.

.. change::
:tags: types
:tickets:

sqlsoup db.<sometable>.update() and delete() now call
query(cls).update() and delete(), respectively.

.. change::
:tags: types
:tickets:

sqlsoup now has execute() and connection(), which call upon
the Session methods of those names, ensuring that the bind is
in terms of the SqlSoup object's bind.

.. change::
:tags: types
:tickets:

sqlsoup objects no longer have the 'query' attribute - it's
not needed for sqlsoup's usage paradigm and it gets in the
way of a column that is actually named 'query'.

.. change::
:tags: types
:tickets: 1259

The signature of the proxy_factory callable passed to
association_proxy is now (lazy_collection, creator,
value_attr, association_proxy), adding a fourth argument
that is the parent AssociationProxy argument. Allows
serializability and subclassing of the built in collections.

.. change::
:tags: types
:tickets: 1372

association_proxy now has basic comparator methods .any(),
.has(), .contains(), ==, !=, thanks to Scott Torborg.


=============
0.7 Changelog
=============


.. changelog::
:version: 0.7.11
:released:

.. change::
:tags: bug, engine
:tickets: 2851
:versions: 0.8.3, 0.9.0b1

The regexp used by the :func:`~sqlalchemy.engine.url.make_url` function now parses
ipv6 addresses, e.g. surrounded by brackets.

.. change::
:tags: bug, orm
:tickets: 2807
:versions: 0.8.3, 0.9.0b1

Fixed bug where list instrumentation would fail to represent a
setslice of ``[0:0]`` correctly, which in particular could occur
when using ``insert(0, item)`` with the association proxy. Due
to some quirk in Python collections, the issue was much more likely
with Python 3 rather than 2.

.. change::
:tags: bug, sql
:tickets: 2801
:versions: 0.8.3, 0.9.0b1

Fixed regression dating back to 0.7.9 whereby the name of a CTE might
not be properly quoted if it was referred to in multiple FROM clauses.

.. change::
:tags: mysql, bug
:tickets: 2791
:versions: 0.8.3, 0.9.0b1

Updates to MySQL reserved words for versions 5.5, 5.6, courtesy
Hanno Schlichting.

.. change::
:tags: sql, bug, cte
:tickets: 2783
:versions: 0.8.3, 0.9.0b1

Fixed bug in common table expression system where if the CTE were
used only as an ``alias()`` construct, it would not render using the
WITH keyword.

.. change::
:tags: bug, sql
:tickets: 2784
:versions: 0.8.3, 0.9.0b1

Fixed bug in :class:`.CheckConstraint` DDL where the "quote" flag from a
:class:`_schema.Column` object would not be propagated.

.. change::
:tags: bug, orm
:tickets: 2699
:versions: 0.8.1

Fixed bug when a query of the form:
``query(SubClass).options(subqueryload(Baseclass.attrname))``,
where ``SubClass`` is a joined inh of ``BaseClass``,
would fail to apply the ``JOIN`` inside the subquery
on the attribute load, producing a cartesian product.
The populated results still tended to be correct as additional
rows are just ignored, so this issue may be present as a
performance degradation in applications that are
otherwise working correctly.

.. change::
:tags: bug, orm
:tickets: 2689
:versions: 0.8.1

Fixed bug in unit of work whereby a joined-inheritance
subclass could insert the row for the "sub" table
before the parent table, if the two tables had no
ForeignKey constraints set up between them.

.. change::
:tags: feature, postgresql
:tickets: 2676
:versions: 0.8.0

Added support for PostgreSQL's traditional SUBSTRING
function syntax, renders as "SUBSTRING(x FROM y FOR z)"
when regular ``func.substring()`` is used.
Courtesy Gunnlaugur Þór Briem.

.. change::
:tags: bug, tests
:tickets: 2669
:pullreq: 41

Fixed an import of "logging" in test_execute which was not
working on some linux platforms.

.. change::
:tags: bug, orm
:tickets: 2674

Improved the error message emitted when a "backref loop" is detected,
that is when an attribute event triggers a bidirectional
assignment between two other attributes with no end.
This condition can occur not just when an object of the wrong
type is assigned, but also when an attribute is mis-configured
to backref into an existing backref pair.

.. change::
:tags: bug, orm
:tickets: 2674

A warning is emitted when a MapperProperty is assigned to a mapper
that replaces an existing property, if the properties in question
aren't plain column-based properties. Replacement of relationship
properties is rarely (ever?) what is intended and usually refers to a
mapper mis-configuration. This will also warn if a backref configures
itself on top of an existing one in an inheritance relationship
(which is an error in 0.8).

.. changelog::

0.5.8

Not secure
:released: Sat Jan 16 2010

.. change::
:tags: sql
:tickets:

The copy() method on Column now supports uninitialized,
unnamed Column objects. This allows easy creation of
declarative helpers which place common columns on multiple
subclasses.

.. change::
:tags: sql
:tickets:

Default generators like Sequence() translate correctly
across a copy() operation.

.. change::
:tags: sql
:tickets:

Sequence() and other DefaultGenerator objects are accepted
as the value for the "default" and "onupdate" keyword
arguments of Column, in addition to being accepted
positionally.

.. change::
:tags: sql
:tickets: 1568, 1617

Fixed a column arithmetic bug that affected column
correspondence for cloned selectables which contain
free-standing column expressions. This bug is
generally only noticeable when exercising newer
ORM behavior only available in 0.6 via,
but is more correct at the SQL expression level
as well.

.. change::
:tags: postgresql
:tickets: 1647

The extract() function, which was slightly improved in
0.5.7, needed a lot more work to generate the correct
typecast (the typecasts appear to be necessary in PG's
EXTRACT quite a lot of the time). The typecast is
now generated using a rule dictionary based
on PG's documentation for date/time/interval arithmetic.
It also accepts text() constructs again, which was broken
in 0.5.7.

.. change::
:tags: firebird
:tickets: 1646

Recognize more errors as disconnections.

.. changelog::

0.5.7

Not secure
:released: Sat Dec 26 2009

.. change::
:tags: orm
:tickets: 1543

contains_eager() now works with the automatically
generated subquery that results when you say
"query(Parent).join(Parent.somejoinedsubclass)", i.e.
when Parent joins to a joined-table-inheritance subclass.
Previously contains_eager() would erroneously add the
subclass table to the query separately producing a
cartesian product. An example is in the ticket
description.

.. change::
:tags: orm
:tickets: 1553

query.options() now only propagate to loaded objects
for potential further sub-loads only for options where
such behavior is relevant, keeping
various unserializable options like those generated
by contains_eager() out of individual instance states.

.. change::
:tags: orm
:tickets: 1054

Session.execute() now locates table- and
mapper-specific binds based on a passed
in expression which is an insert()/update()/delete()
construct.

.. change::
:tags: orm
:tickets:

Session.merge() now properly overwrites a many-to-one or
uselist=False attribute to None if the attribute
is also None in the given object to be merged.

.. change::
:tags: orm
:tickets: 1618

Fixed a needless select which would occur when merging
transient objects that contained a null primary key
identifier.

.. change::
:tags: orm
:tickets: 1585

Mutable collection passed to the "extension" attribute
of relation(), column_property() etc. will not be mutated
or shared among multiple instrumentation calls, preventing
duplicate extensions, such as backref populators,
from being inserted into the list.

.. change::
:tags: orm
:tickets: 1504

Fixed the call to get_committed_value() on CompositeProperty.

.. change::
:tags: orm
:tickets: 1602

Fixed bug where Query would crash if a join() with no clear
"left" side were called when a non-mapped column entity
appeared in the columns list.

.. change::
:tags: orm
:tickets: 1616, 1480

Fixed bug whereby composite columns wouldn't load properly
when configured on a joined-table subclass, introduced in
version 0.5.6 as a result of the fix for. thx to Scott Torborg.

.. change::
:tags: orm
:tickets: 1556

The "use get" behavior of many-to-one relations, i.e. that a
lazy load will fallback to the possibly cached query.get()
value, now works across join conditions where the two compared
types are not exactly the same class, but share the same
"affinity" - i.e. Integer and SmallInteger. Also allows
combinations of reflected and non-reflected types to work
with 0.5 style type reflection, such as PGText/Text (note 0.6
reflects types as their generic versions).

.. change::
:tags: orm
:tickets: 1436

Fixed bug in query.update() when passing Cls.attribute
as keys in the value dict and using synchronize_session='expire'
('fetch' in 0.6).

.. change::
:tags: sql
:tickets: 1603

Fixed bug in two-phase transaction whereby commit() method
didn't set the full state which allows subsequent close()
call to succeed.

.. change::
:tags: sql
:tickets:

Fixed the "numeric" paramstyle, which apparently is the
default paramstyle used by Informixdb.

.. change::
:tags: sql
:tickets: 1574

Repeat expressions in the columns clause of a select
are deduped based on the identity of each clause element,
not the actual string. This allows positional
elements to render correctly even if they all render
identically, such as "qmark" style bind parameters.

.. change::
:tags: sql
:tickets: 1632

The cursor associated with connection pool connections
(i.e. _CursorFairy) now proxies `__iter__()` to the
underlying cursor correctly.

.. change::
:tags: sql
:tickets: 1556

types now support an "affinity comparison" operation, i.e.
that an Integer/SmallInteger are "compatible", or
a Text/String, PickleType/Binary, etc. Part of.

.. change::
:tags: sql
:tickets: 1641

Fixed bug preventing alias() of an alias() from being
cloned or adapted (occurs frequently in ORM operations).

.. change::
:tags: sqlite
:tickets: 1439

sqlite dialect properly generates CREATE INDEX for a table
that is in an alternate schema.

.. change::
:tags: postgresql
:tickets: 1085

Added support for reflecting the DOUBLE PRECISION type,
via a new postgres.PGDoublePrecision object.
This is postgresql.DOUBLE_PRECISION in 0.6.

.. change::
:tags: postgresql
:tickets: 460

Added support for reflecting the INTERVAL YEAR TO MONTH
and INTERVAL DAY TO SECOND syntaxes of the INTERVAL
type.

.. change::
:tags: postgresql
:tickets: 1576

Corrected the "has_sequence" query to take current schema,
or explicit sequence-stated schema, into account.

.. change::
:tags: postgresql
:tickets: 1611

Fixed the behavior of extract() to apply operator
precedence rules to the "::" operator when applying
the "timestamp" cast - ensures proper parenthesization.

.. change::
:tags: mssql
:tickets: 1561

Changed the name of TrustedConnection to
Trusted_Connection when constructing pyodbc connect
arguments

.. change::
:tags: oracle
:tickets: 1637

The "table_names" dialect function, used by MetaData
.reflect(), omits "index overflow tables", a system
table generated by Oracle when "index only tables"
with overflow are used. These tables aren't accessible
via SQL and can't be reflected.

.. change::
:tags: ext
:tickets: 1570, 1523

A column can be added to a joined-table declarative
superclass after the class has been constructed
(i.e. via class-level attribute assignment), and
the column will be propagated down to
subclasses. This is the reverse
situation as that of, fixed in 0.5.6.

.. change::
:tags: ext
:tickets: 1491

Fixed a slight inaccuracy in the sharding example.
Comparing equivalence of columns in the ORM is best
accomplished using col1.shares_lineage(col2).

.. change::
:tags: ext
:tickets: 1606

Removed unused `load()` method from ShardedQuery.

.. changelog::

0.5.6

Not secure
:released: Sat Sep 12 2009

.. change::
:tags: orm
:tickets: 1300

Fixed bug whereby inheritance discriminator part of a
composite primary key would fail on updates.
Continuation of.

.. change::
:tags: orm
:tickets: 1507

Fixed bug which disallowed one side of a many-to-many
bidirectional reference to declare itself as "viewonly"

.. change::
:tags: orm
:tickets: 1526

Added an assertion that prevents a validates function
or other AttributeExtension from loading an unloaded
collection such that internal state may be corrupted.

.. change::
:tags: orm
:tickets: 1519

Fixed bug which prevented two entities from mutually
replacing each other's primary key values within a single
flush() for some orderings of operations.

.. change::
:tags: orm
:tickets: 1485

Fixed an obscure issue whereby a joined-table subclass
with a self-referential eager load on the base class
would populate the related object's "subclass" table with
data from the "subclass" table of the parent.

.. change::
:tags: orm
:tickets: 1477

relations() now have greater ability to be "overridden",
meaning a subclass that explicitly specifies a relation()
overriding that of the parent class will be honored
during a flush. This is currently to support
many-to-many relations from concrete inheritance setups.
Outside of that use case, YMMV.

.. change::
:tags: orm
:tickets: 1483

Squeezed a few more unnecessary "lazy loads" out of
relation(). When a collection is mutated, many-to-one
backrefs on the other side will not fire off to load
the "old" value, unless "single_parent=True" is set.
A direct assignment of a many-to-one still loads
the "old" value in order to update backref collections
on that value, which may be present in the session
already, thus maintaining the 0.5 behavioral contract.

.. change::
:tags: orm
:tickets: 1480

Fixed bug whereby a load/refresh of joined table
inheritance attributes which were based on
column_property() or similar would fail to evaluate.

.. change::
:tags: orm
:tickets: 1488

Improved support for MapperProperty objects overriding
that of an inherited mapper for non-concrete
inheritance setups - attribute extensions won't randomly
collide with each other.

.. change::
:tags: orm
:tickets: 1487

UPDATE and DELETE do not support ORDER BY, LIMIT, OFFSET,
etc. in standard SQL. Query.update() and Query.delete()
now raise an exception if any of limit(), offset(),
order_by(), group_by(), or distinct() have been
called.

.. change::
:tags: orm
:tickets:

Added AttributeExtension to sqlalchemy.orm.__all__

.. change::
:tags: orm
:tickets: 1476

Improved error message when query() is called with
a non-SQL /entity expression.

.. change::
:tags: orm
:tickets: 1440

Using False or 0 as a polymorphic discriminator now
works on the base class as well as a subclass.

.. change::
:tags: orm
:tickets: 1424

Added enable_assertions(False) to Query which disables
the usual assertions for expected state - used
by Query subclasses to engineer custom state.. See
https://www.sqlalchemy.org/trac/wiki/UsageRecipes/PreFilteredQuery
for an example.

.. change::
:tags: orm
:tickets: 1501

Fixed recursion issue which occurred if a mapped object's
`__len__()` or `__nonzero__()` method resulted in state
changes.

.. change::
:tags: orm
:tickets: 1506

Fixed incorrect exception raise in
Weak/StrongIdentityMap.add()

.. change::
:tags: orm
:tickets: 1522

Fixed the error message for "could not find a FROM clause"
in query.join() which would fail to issue correctly
if the query was against a pure SQL construct.

.. change::
:tags: orm
:tickets: 1486

Fixed a somewhat hypothetical issue which would result
in the wrong primary key being calculated for a mapper
using the old polymorphic_union function - but this
is old stuff.

.. change::
:tags: sql
:tickets: 1373

Fixed column.copy() to copy defaults and onupdates.

.. change::
:tags: sql
:tickets:

Fixed a bug in extract() introduced in 0.5.4 whereby
the string "field" argument was getting treated as a
ClauseElement, causing various errors within more
complex SQL transformations.

.. change::
:tags: sql
:tickets: 1420

Unary expressions such as DISTINCT propagate their
type handling to result sets, allowing conversions like
unicode and such to take place.

.. change::
:tags: sql
:tickets: 1482

Fixed bug in Table and Column whereby passing empty
dict for "info" argument would raise an exception.

.. change::
:tags: oracle
:tickets: 1309

Backported 0.6 fix for Oracle alias names not getting
truncated.

.. change::
:tags: ext
:tickets: 1446

The collection proxies produced by associationproxy are now
pickleable. A user-defined proxy_factory however
is still not pickleable unless it defines __getstate__
and __setstate__.

.. change::
:tags: ext
:tickets: 1468

Declarative will raise an informative exception if
__table_args__ is passed as a tuple with no dict argument.
Improved documentation.

.. change::
:tags: ext
:tickets: 1527

Table objects declared in the MetaData can now be used
in string expressions sent to primaryjoin/secondaryjoin/
secondary - the name is pulled from the MetaData of the
declarative base.

.. change::
:tags: ext
:tickets: 1523

A column can be added to a joined-table subclass after
the class has been constructed (i.e. via class-level
attribute assignment). The column is added to the underlying
Table as always, but now the mapper will rebuild its
"join" to include the new column, instead of raising
an error about "no such column, use column_property()
instead".

.. change::
:tags: test
:tickets:

Added examples into the test suite so they get exercised
regularly and cleaned up a couple deprecation warnings.

.. changelog::

0.5.5

Not secure
:released: Mon Jul 13 2009

.. change::
:tags: general
:tickets: 970

unit tests have been migrated from unittest to nose. See
README.unittests for information on how to run the tests.

.. change::
:tags: orm
:tickets:

The "foreign_keys" argument of relation() will now propagate
automatically to the backref in the same way that primaryjoin
and secondaryjoin do. For the extremely rare use case where
the backref of a relation() has intentionally different
"foreign_keys" configured, both sides now need to be
configured explicitly (if they do in fact require this setting,
see the next note...).

.. change::
:tags: orm
:tickets:

...the only known (and really, really rare) use case where a
different foreign_keys setting was used on the
forwards/backwards side, a composite foreign key that
partially points to its own columns, has been enhanced such
that the fk->itself aspect of the relation won't be used to
determine relation direction.

.. change::
:tags: orm
:tickets:

Session.mapper is now *deprecated*.

Call session.add() if you'd like a free-standing object to be
part of your session. Otherwise, a DIY version of
Session.mapper is now documented at
https://www.sqlalchemy.org/trac/wiki/UsageRecipes/SessionAwareMapper
The method will remain deprecated throughout 0.6.

.. change::
:tags: orm
:tickets: 1431

Fixed Query being able to join() from individual columns of a
joined-table subclass entity, i.e. query(SubClass.foo,
SubClass.bar).join(<anything>). In most cases, an error
"Could not find a FROM clause to join from" would be
raised. In a few others, the result would be returned in terms
of the base class rather than the subclass - so applications
which relied on this erroneous result need to be
adjusted.

.. change::
:tags: orm
:tickets: 1461

Fixed a bug involving contains_eager(), which would apply
itself to a secondary (i.e. lazy) load in a particular rare
case, producing cartesian products. improved the targeting of
query.options() on secondary loads overall.

.. change::
:tags: orm
:tickets:

Fixed bug introduced in 0.5.4 whereby Composite types fail
when default-holding columns are flushed.

.. change::
:tags: orm
:tickets: 1426

Fixed another 0.5.4 bug whereby mutable attributes
(i.e. PickleType) wouldn't be deserialized correctly when the
whole object was serialized.

.. change::
:tags: orm
:tickets:

Fixed bug whereby session.is_modified() would raise an
exception if any synonyms were in use.

.. change::
:tags: orm
:tickets:

Fixed potential memory leak whereby previously pickled objects
placed back in a session would not be fully garbage collected
unless the Session were explicitly closed out.

.. change::
:tags: orm
:tickets:

Fixed bug whereby list-based attributes, like pickletype and
PGArray, failed to be merged() properly.

.. change::
:tags: orm
:tickets:

Repaired non-working attributes.set_committed_value function.

.. change::
:tags: orm
:tickets:

Trimmed the pickle format for InstanceState which should
further reduce the memory footprint of pickled instances. The
format should be backwards compatible with that of 0.5.4 and
previous.

.. change::
:tags: orm
:tickets: 1463

sqlalchemy.orm.join and sqlalchemy.orm.outerjoin are now
added to __all__ in sqlalchemy.orm.*.

.. change::
:tags: orm
:tickets: 1458

Fixed bug where Query exception raise would fail when
a too-short composite primary key value were passed to
get().

.. change::
:tags: sql
:tickets:

Removed an obscure feature of execute() (including connection,
engine, Session) whereby a bindparam() construct can be sent
as a key to the params dictionary. This usage is undocumented
and is at the core of an issue whereby the bindparam() object
created implicitly by a text() construct may have the same
hash value as a string placed in the params dictionary and may
result in an inappropriate match when computing the final bind
parameters. Internal checks for this condition would add
significant latency to the critical task of parameter
rendering, so the behavior is removed. This is a backwards
incompatible change for any application that may have been
using this feature, however the feature has never been
documented.

.. change::
:tags: engine/pool
:tickets:

Implemented recreate() for StaticPool.

.. changelog::
:version: 0.5.4p2
:released: Tue May 26 2009

.. change::
:tags: sql
:tickets:

Repaired the printing of SQL exceptions which are not
based on parameters or are not executemany() style.

.. change::
:tags: postgresql
:tickets:

Deprecated the hardcoded TIMESTAMP function, which when
used as func.TIMESTAMP(value) would render "TIMESTAMP value".
This breaks on some platforms as PostgreSQL doesn't allow
bind parameters to be used in this context. The hard-coded
uppercase is also inappropriate and there's lots of other
PG casts that we'd need to support. So instead, use
text constructs i.e. select(["timestamp '12/05/09'"]).

.. changelog::
:version: 0.5.4p1
:released: Mon May 18 2009

.. change::
:tags: orm
:tickets:

Fixed an attribute error introduced in 0.5.4 which would
occur when merge() was used with an incomplete object.

.. changelog::

Page 40 of 50

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.