summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix a typo: evaluted -> evaluated.pr/32Hyunjun Kim2013-10-081-1/+1
|
* - add monetdbMike Bayer2013-10-011-2/+10
| | | | - break out into "production" and "experimental"
* - put exact version string in the testMike Bayer2013-09-292-5/+4
| | | | - use match with a .* preceding instead of search
* changelogMike Bayer2013-09-291-0/+9
|
* Merge pull request #26 from hackop/ticket_2819mike bayer2013-09-291-1/+1
| | | | re.match to re.search
* add test for upcoming pullreqMike Bayer2013-09-291-1/+6
|
* its a featureMike Bayer2013-09-291-1/+1
|
* changelogMike Bayer2013-09-291-0/+9
|
* Merge pull request #25 from gthb/ticket_2821mike bayer2013-09-293-3/+14
| | | | | | Hide password in URL and Engine __repr__ Conflicts: lib/sqlalchemy/engine/url.py
* fix typo [ticket:2827]Mike Bayer2013-09-171-1/+1
|
* render "backports"/ "forward ports" automatically, only write outMike Bayer2013-09-173-117/+132
| | | | | | | changelog once Conflicts: doc/build/changelog/changelog_09.rst
* Fixed Query.exists() method for the case, when query doesn't have any ↵Vladimir Magamedov2013-09-043-2/+18
| | | | | | | filters applied. Conflicts: doc/build/changelog/changelog_09.rst
* use a different col here to keep oracle happyMike Bayer2013-09-021-2/+12
|
* plus some more adjustments for mysql, or in general if an Index refers toMike Bayer2013-08-282-2/+12
| | | | in-python only cols
* Fixed bug where using the ``column_reflect`` event to change the ``.key``Mike Bayer2013-08-283-10/+59
| | | | | | | | | of the incoming :class:`.Column` would prevent primary key constraints, indexes, and foreign key constraints from being correctly reflected. Also in 0.8.3. [ticket:2811] Conflicts: doc/build/changelog/changelog_09.rst
* - fix a crapload of seealsosMike Bayer2013-08-272-16/+27
| | | | - fix the label on metadata.rst
* correct for missing fail() methods which were lost when we removed ↵Mike Bayer2013-08-261-25/+20
| | | | unittest.TestCase
* clean up formatting and other linting issuesMike Bayer2013-08-261-53/+51
| | | | | Conflicts: test/ext/test_associationproxy.py
* - add version_id documentation [ticket:867]Mike Bayer2013-08-255-36/+199
| | | | | | - add the RETURNING glossary entry - other "seealso's" fixed - add doc for eager_defaults option
* forgot to add system to the copy() methodMike Bayer2013-08-252-0/+8
|
* added "system=True" to Column, so that we generally don't have to botherMike Bayer2013-08-254-6/+41
| | | | with CreateColumn rules
* Merge pull request #23 from yoloseem/mastermike bayer2013-08-252-3/+3
| | | | Fixed two typos.
* - The :class:`.CreateColumn` construct can be appled to a customMike Bayer2013-08-244-4/+58
| | | | | | | | | compilation rule which allows skipping of columns, by producing a rule that returns ``None``. Also in 0.8.3. Conflicts: doc/build/changelog/changelog_09.rst lib/sqlalchemy/sql/ddl.py
* - this comment is wrong, the method here returns all mapper entitiesMike Bayer2013-08-241-4/+1
| | | | | - use a simple isinstance() check instead of looking for presence of "primary_entity" flag, that's a little unclear
* formattingMike Bayer2013-08-231-5/+5
|
* - update the test times, include pypy, clean up the scriptMike Bayer2013-08-211-19/+29
|
* add FAQ entry on large insertsMike Bayer2013-08-211-1/+127
|
* fix linkMike Bayer2013-08-211-1/+1
|
* move FAQ to the docs, [ticket:2133]Mike Bayer2013-08-2111-7/+791
| | | | | Conflicts: doc/build/index.rst
* yikes return the modname if no lookup found...Mike Bayer2013-08-211-0/+2
|
* dont need to translate all these namesMike Bayer2013-08-211-8/+0
|
* too small!Mike Bayer2013-08-211-1/+1
|
* add some heightMike Bayer2013-08-211-2/+5
|
* additoinalMike Bayer2013-08-212-18/+44
| | | | | | cherry pick of 9302be39a5f40b537ff43e1990c7a210c464cf1c from 0.9 Conflicts: lib/sqlalchemy/sql/selectable.py
* - reorganize docs so expression, schema are broken out into subfiles, ↵Mike Bayer2013-08-2131-1889/+1935
| | | | | | | | they're too big - fix the targeting of module names moved around by using custom handlers for "Bases", etc. cherry pick of 0c19c1c66f3a115f5ce710de571552d68fac6358 from 0.9. there's likely issues to be fixed.
* pypy pickle isn't "bulletproof"Mike Bayer2013-08-201-1/+2
|
* apply test skips for pypy issue #1573 in 0.8 [ticket:2805]Mike Bayer2013-08-202-2/+15
|
* Fixed bug where list instrumentation would fail to represent aMike Bayer2013-08-204-4/+32
| | | | | | | | | | | 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. Also in 0.8.3, 0.7.11. [ticket:2807] Conflicts: doc/build/changelog/changelog_09.rst
* changelog adjust...Mike Bayer2013-08-181-1/+1
|
* - use newly fixed WeakSequence (#2794) to not have to rely on class name for ↵Mike Bayer2013-08-181-5/+4
| | | | sorting in #2779
* - add WeakSequence.append()Mike Bayer2013-08-182-6/+43
| | | | - fix and test weakref cleanout for WeakSequence, [ticket:2794]
* Backported a change from 0.9 whereby the iteration of a hierarchyMike Bayer2013-08-182-1/+12
| | | | | | | | of mappers used in polymorphic inheritance loads is sorted on class name, which allows the SELECT statements generated for polymorphic queries to have deterministic rendering, which in turn helps with caching schemes that cache on the SQL string itself. [ticket:2779]
* fix the mergeMike Bayer2013-08-181-4/+0
|
* Fixed a potential issue in an ordered sequence implementation usedMike Bayer2013-08-183-4/+23
| | | | | | | | | | | by the ORM to iterate mapper hierarchies; under the Jython interpreter this implementation wasn't ordered, even though cPython and Pypy maintained ordering. Also in 0.8.3. [ticket:2794] Conflicts: doc/build/changelog/changelog_09.rst lib/sqlalchemy/util/_collections.py
* - also do delete, add seealsos, formatting, etc. [ticket:2798]Mike Bayer2013-08-181-13/+37
|
* - add better notes to query.update(), most notably how to deal with a joined ↵Mike Bayer2013-08-182-12/+38
| | | | | | table update, [ticket:2798]
* Fixed regression dating back to 0.7.9 whereby the name of a CTE mightMike Bayer2013-08-184-1/+32
| | | | | | | | not be properly quoted if it was referred to in multiple FROM clauses. Also in 0.8.3, 0.7.11. [ticket:2801] Conflicts: doc/build/changelog/changelog_09.rst
* 0.8 changelogMike Bayer2013-08-171-0/+7
|
* - changelogMike Bayer2013-08-171-26/+26
| | | | | | | | - clean up these tests to not use globals so much, close out the session Conflicts: doc/build/changelog/changelog_09.rst examples/versioning/test_versioning.py
* Merged in prschmid/sqlalchemy (pull request #4)Mike Bayer2013-08-171-3/+3
| | | | Made primary_key autoincrement=False in versioning example.