summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* - update mysql connector python links, #2938rel_0_6Mike Bayer2014-02-181-1/+2
|
* - merge udpated sql_mode documentation for [ticket:1552]Mike Bayer2013-04-291-58/+28
| | | | - replace misleading mysql-compatibility chart with newer verbiage from 0.7, 0.8 etc.
* pysqlite doc updateMike Bayer2012-08-301-29/+41
|
* - rewrite rowcount documentation to be as absolutely clear as possibleMike Bayer2012-06-122-21/+66
|
* Add some `Sphinx` paragraph level versions informations markups,Mike Bayer2012-06-0812-61/+91
| | | | such as ``.. versionadded::``, ``.. versionchanged::`` and ``.. deprecated::``.
* copyrightMike Bayer2012-05-05108-108/+108
|
* - some mysql test tweaks ported from 0.7Mike Bayer2012-05-051-0/+14
|
* - Backported the fix for [ticket:2317] introducedMike Bayer2012-04-241-8/+15
| | | | | | | in 0.7.4, which ensures that the connection is in a valid state before attempting to call rollback()/prepare()/release() on savepoint and two-phase transactions.
* add doc for with_lockmode(), [ticket:2412]Mike Bayer2012-02-201-1/+16
|
* fix .. note::/ ..warning:: directives which no longer consistentlyMike Bayer2011-12-253-9/+21
| | | | support inline formatting in docutils 0.8
* backport [ticket:2269] fix from 0.7Mike Bayer2011-12-061-2/+9
|
* - [bug] Fixed the error formatting raised whenMike Bayer2011-12-031-1/+1
| | | | | a tuple is inadvertently passed to session.query() [ticket:2297].
* - [bug] fixed inappropriate evaluation of user-mappedMike Bayer2011-10-281-1/+1
| | | | | object in a boolean context within query.get() [ticket:2310].
* - Cls.column.collate("some collation") nowMike Bayer2011-10-231-6/+6
| | | | works. [ticket:1776]
* - Fixed bug related to [ticket:2141] whereby theMike Bayer2011-10-051-6/+12
| | | | | | same modified index behavior in PG 9 affected primary key reflection on a renamed column. [ticket:2291].
* - a CREATE TABLE will put the COLLATE optionMike Bayer2011-10-031-20/+30
| | | | | | after CHARSET, which appears to be part of MySQL's arbitrary rules regarding if it will actually work or not. [ticket:2225]
* - Fixed bug whereby mapper.order_by attribute wouldMike Bayer2011-09-281-0/+4
| | | | | be ignored in the "inner" query within a subquery eager load. [ticket:2287].
* improved docs on select_from() [ticket:2274]Mike Bayer2011-09-261-5/+14
|
* rollback r990939ba046a, does not apply to 0.6Mike Bayer2011-09-211-2/+1
|
* - Fixed ReturningResultProxy for zxjdbc dialect.Mike Bayer2011-09-211-1/+2
| | | | [ticket:2272]
* - Fixed bug whereby with_only_columns() method ofMike Bayer2011-09-211-6/+7
| | | | | | | Select would fail if a selectable were passed. [ticket:2270]. However, the FROM behavior is still incorrect here, so you need 0.7 in any case for this use case to be usable.
* patch from 0.7: Adjusted the "importlater" mechanism, which isMike Bayer2011-09-214-15/+52
| | | | | | | | | used internally to resolve import cycles, such that the usage of __import__ is completed when the import of sqlalchemy or sqlalchemy.orm is done, thereby avoiding any usage of __import__ after the application starts new threads, fixes [ticket:2279].
* fix typo, [ticket:2271]Mike Bayer2011-09-061-1/+1
|
* link date/time classes correctly, helps [ticket:2244]Mike Bayer2011-08-041-1/+1
|
* - document get_bind(), [ticket:1053]Mike Bayer2011-07-311-8/+25
| | | | - ensure mapper has "None" default for get_bind()
* - Fixed bug where query.join() + aliased=TrueMike Bayer2011-07-301-1/+1
| | | | | | | from a joined-inh structure to itself on relationship() with join condition on the child table would convert the lead entity into the joined one inappropriately. [ticket:2234]
* Backed out changeset e5737a6d896ba54da07c7ffb0bc56121732ade72 - this only ↵Mike Bayer2011-07-241-1/+1
| | | | applies to 0.7
* - fix annotation for aliased()Mike Bayer2011-07-241-1/+1
|
* - added CURRENT to reserved word list.Mike Bayer2011-07-241-1/+1
| | | | [ticket:2212]
* - Fixed OurSQL dialect to use ansi-neutralMike Bayer2011-07-241-6/+7
| | | | | quote symbol "'" for XA commands instead of '"'. [ticket:2186].
* - Fixed bug apparent only in Python 3 wherebyMike Bayer2011-07-242-5/+7
| | | | | | | sorting of persistent + pending objects during flush would produce an illegal comparison, if the persistent object primary key is not a single integer. [ticket:2228]
* - document query.get(), ObjectDeletedError fully, [ticket:2146]Mike Bayer2011-07-232-17/+72
|
* - Added an informative error message whenMike Bayer2011-07-211-1/+7
| | | | | | | | | ForeignKeyConstraint refers to a column name in the parent that is not found. - add tests for [ticket:2226], as if we hit each @declared_attr directly with obj.__get__(obj, name) instead of using getattr(cls, name). Basic inheritance mechanics are improperly used in this case, so 2226 is invalid.
* put a really explicit note about joinedload vs. join, everywhere ↵Mike Bayer2011-07-202-6/+13
| | | | joinedload() is mentioned
* - Fixed bug whereby the source clauseMike Bayer2011-07-201-1/+2
| | | | | | used by query.join() would be inconsistent if against a column expression that combined multiple entities together. [ticket:2197]
* - repaired the oracle.RAW type which did notMike Bayer2011-07-192-4/+7
| | | | | | | | generate the correct DDL. [ticket:2220] - Fixed bug whereby "warn on unicode" flag would get set for the String type when used with certain dialects. This bug is not in 0.7.
* - Fixed bug whereby if a mapped classMike Bayer2011-07-172-10/+23
| | | | | | | | | redefined __hash__() or __eq__() to something non-standard, which is a supported use case as SQLA should never consult these, the methods would be consulted if the class was part of a "composite" (i.e. non-single-entity) result set. [ticket:2215]
* - The join condition produced by with_parentMike Bayer2011-07-063-23/+43
| | | | | | | as well as when using a "dynamic" relationship against a parent will generate unique bindparams, rather than incorrectly repeating the same bindparam. [ticket:2207].
* - fix pypostgresql typo, [ticket:2185]Mike Bayer2011-07-045-33/+45
| | | | | | | | | | | | | | | | | | - rewrite "getting a session" docs to delineate all sessionmaker() use cases distinctly - rewrite "Managing Transactions" doc to spell out each specific step completely, [ticket:2204] - add to create_engine() and main "engine" doc an unambiguous statement that the create_engine() does not create a connection - other link fixes - rewrite "deleting" section so that "deleting from collections" is separate, well-described, [ticket:2202] - rephrase "autocommit mode" into its own section, move it down, put some bold text that you shouldn't be using it. - simplify the "subtransactions" section and make it local to "autocommit" since it is utterly unneeded by anybody. - oracle is not doing 2-phase anytime soon
* - Fixed subtle bug that caused SQL to blowMike Bayer2011-06-275-11/+43
| | | | | | up if: column_property() against subquery + joinedload + LIMIT + order by the column property() occurred. [ticket:2188].
* - Fixed a subtle bug involving columnMike Bayer2011-06-271-1/+6
| | | | | correspondence in a selectable with the same column repeated. Affects [ticket:2188].
* - the "cascade" section of the session doc was totally screwed up, mappingsMike Bayer2011-06-231-8/+24
| | | | | used the wrong form, example for cascade_backref used the wrong names. - rewrite relationship cascade_backrefs doc
* fix docstringMike Bayer2011-06-231-1/+1
|
* - Added ORA-00028 to disconnect codes, useMike Bayer2011-06-221-1/+5
| | | | | cx_oracle _Error.code to get at the code, [ticket:2200].
* - Repaired the "no statement condition"Mike Bayer2011-06-212-2/+2
| | | | | | | assertion in Query which would attempt to raise if a generative method were called after from_statement() were called. [ticket:2199].
* - Fixed bug whereby DATETIME2 type would fail onMike Bayer2011-06-051-0/+1
| | | | | | the "adapt" step when used in result sets or bound parameters. This issue is not in 0.7. [ticket:2159]
* - Fixed bug where transaction-level "deleted"Mike Bayer2011-06-051-0/+2
| | | | | | collection wouldn't be cleared of expunged states, raising an error if they later became transient [ticket:2182].
* - Adjusted the __contains__() method ofMike Bayer2011-06-042-8/+17
| | | | | | | | | a RowProxy result row such that no exception throw is generated internally; NoSuchColumnError() also will generate its message regardless of whether or not the column construct can be coerced to a string. [ticket:2178].
* - Some unit test fixes regarding numeric arrays,Mike Bayer2011-06-041-0/+6
| | | | | | | MATCH operator. A potential floating-point inaccuracy issue was fixed, and certain tests of the MATCH operator only execute within an EN-oriented locale for now. [ticket:2175].
* - Modify the text of the message which occursMike Bayer2011-06-041-4/+9
| | | | | | | when the "identity" key isn't detected on flush, to include the common cause that the Column isn't set up to detect auto-increment correctly; [ticket:2170].