diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-25 14:03:54 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-25 14:03:54 -0400 |
| commit | d6ce68727f8ad4c77cc64ac6bbc5fc17ecd2b8e3 (patch) | |
| tree | 402e29083415154f31b46da58b22b352f71aca7f /doc/build/static/docs.css | |
| parent | 00f3ca98ce24577f6a7fb40efd15bdb2d86acd26 (diff) | |
| download | sqlalchemy-d6ce68727f8ad4c77cc64ac6bbc5fc17ecd2b8e3.tar.gz | |
- The ``version_id_generator`` parameter of ``Mapper`` can now be specified
to rely upon server generated version identifiers, using triggers
or other database-provided versioning features, by passing the value
``False``. The ORM will use RETURNING when available to immediately
load the new version identifier, else it will emit a second SELECT.
[ticket:2793]
- The ``eager_defaults`` flag of :class:`.Mapper` will now allow the
newly generated default values to be fetched using an inline
RETURNING clause, rather than a second SELECT statement, for backends
that support RETURNING.
- Added a new variant to :meth:`.ValuesBase.returning` called
:meth:`.ValuesBase.return_defaults`; this allows arbitrary columns
to be added to the RETURNING clause of the statement without interfering
with the compilers usual "implicit returning" feature, which is used to
efficiently fetch newly generated primary key values. For supporting
backends, a dictionary of all fetched values is present at
:attr:`.ResultProxy.returned_defaults`.
- add a glossary entry for RETURNING
- add documentation for version id generation, [ticket:867]
Diffstat (limited to 'doc/build/static/docs.css')
| -rw-r--r-- | doc/build/static/docs.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/build/static/docs.css b/doc/build/static/docs.css index 09269487b..191a2041c 100644 --- a/doc/build/static/docs.css +++ b/doc/build/static/docs.css @@ -343,6 +343,21 @@ div.admonition, div.topic, .deprecated, .versionadded, .versionchanged { box-shadow: 2px 2px 3px #DFDFDF; } + +div.sidebar { + background-color: #FFFFEE; + border: 1px solid #DDDDBB; + float: right; + margin: 0 0 0.5em 1em; + padding: 7px 7px 0; + width: 40%; + font-size:.9em; +} + +p.sidebar-title { + font-weight: bold; +} + /* grrr sphinx changing your document structures, removing classes.... */ .versionadded .versionmodified, |
