Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | README.unittests.rst: Add blurb about toxpr/49 | Marc Abramowitz | 2013-11-25 | 1 | -0/+39 |
| | |||||
* | - The :func:`.create_engine` routine and the related | Mike Bayer | 2013-11-24 | 4 | -13/+78 |
| | | | | | | | :func:`.make_url` function **no longer URL encode the password**. Database passwords that include characters like spaces, plus signs and anything else should now represent these characters directly, without any URL escaping. [ticket:2873] | ||||
* | pg8000 fix for decimal return scale | Mike Bayer | 2013-11-23 | 1 | -1/+2 |
| | |||||
* | -be more agnostic of quotes here | Mike Bayer | 2013-11-23 | 1 | -2/+2 |
| | |||||
* | - evaulate decimal_return_scale statelessly. Don't re-assign to ↵ | Mike Bayer | 2013-11-23 | 4 | -12/+16 |
| | | | | | | self.decimal_return_scale so that __repr__() is maintained (for alembic tests) | ||||
* | clean up imports | Mike Bayer | 2013-11-23 | 1 | -9/+5 |
| | |||||
* | - this test only for mysql | Mike Bayer | 2013-11-23 | 1 | -2/+5 |
| | |||||
* | - Some refinements to the :class:`.AliasedClass` construct with regards | Mike Bayer | 2013-11-23 | 7 | -108/+167 |
| | | | | | | | | | | | | | | | to descriptors, like hybrids, synonyms, composites, user-defined descriptors, etc. The attribute adaptation which goes on has been made more robust, such that if a descriptor returns another instrumented attribute, rather than a compound SQL expression element, the operation will still proceed. Addtionally, the "adapted" operator will retain its class; previously, a change in class from ``InstrumentedAttribute`` to ``QueryableAttribute`` (a superclass) would interact with Python's operator system such that an expression like ``aliased(MyClass.x) > MyClass.x`` would reverse itself to read ``myclass.x < myclass_1.x``. The adapted attribute will also refer to the new :class:`.AliasedClass` as its parent which was not always the case before. [ticket:2872] | ||||
* | - The precision used when coercing a returned floating point value to | Mike Bayer | 2013-11-22 | 12 | -19/+172 |
| | | | | | | | | | | Python ``Decimal`` via string is now configurable. The flag ``decimal_return_scale`` is now supported by all :class:`.Numeric` and :class:`.Float` types, which will ensure this many digits are taken from the native floating point value when it is converted to string. If not present, the type will make use of the value of ``.scale``, if the type supports this setting and it is non-None. Otherwise the original default length of 10 is used. [ticket:2867] | ||||
* | - Fixed bug where SQL statement would be improperly ASCII-encoded | Mike Bayer | 2013-11-22 | 4 | -4/+33 |
| | | | | | | | when a pre-DBAPI :class:`.StatementError` were raised within :meth:`.Connection.execute`, causing encoding errors for non-ASCII statements. The stringification now remains within Python unicode thus avoiding encoding errors. [ticket:2871] | ||||
* | Fixed bug where Oracle ``VARCHAR`` types given with no length | Mike Bayer | 2013-11-22 | 3 | -1/+18 |
| | | | | | (e.g. for a ``CAST`` or similar) would incorrectly render ``None CHAR`` or similar. [ticket:2870] | ||||
* | - cleanup | Mike Bayer | 2013-11-22 | 1 | -267/+281 |
| | |||||
* | something changed the name here, probably one of those doc pullreqs | Mike Bayer | 2013-11-21 | 1 | -1/+1 |
| | |||||
* | fix [ticket:2868] some more | Mike Bayer | 2013-11-21 | 2 | -4/+8 |
| | |||||
* | adjustment to work on py3k as well | Mike Bayer | 2013-11-21 | 1 | -1/+3 |
| | |||||
* | - Fixed bug which prevented the ``serializer`` extension from working | Mike Bayer | 2013-11-21 | 5 | -9/+36 |
| | | | | | correctly with table or column names that contain non-ASCII characters. [ticket:2869] | ||||
* | - Fixed a regression caused by :ticket:`2812` where the repr() for | Mike Bayer | 2013-11-21 | 3 | -2/+22 |
| | | | | | table and column names would fail if the name contained non-ascii characters. [ticket:2868] | ||||
* | break up behavioral changes into ORM and Core | Mike Bayer | 2013-11-19 | 1 | -64/+69 |
| | |||||
* | - The :class:`.RowProxy` object is now sortable in Python as a regular | Mike Bayer | 2013-11-19 | 5 | -1/+55 |
| | | | | | | tuple is; this is accomplished via ensuring tuple() conversion on both sides within the ``__eq__()`` method as well as the addition of a ``__lt__()`` method. [ticket:2848] | ||||
* | - The ``viewonly`` flag on :func:`.relationship` will now prevent | Mike Bayer | 2013-11-19 | 6 | -0/+197 |
| | | | | | | | | | | attribute history from being written on behalf of the target attribute. This has the effect of the object not being written to the Session.dirty list if it is mutated. Previously, the object would be present in Session.dirty, but no change would take place on behalf of the modified attribute during flush. The attribute still emits events such as backref events and user-defined events and will still receive mutations from backrefs. [ticket:2833] | ||||
* | Added support for new :attr:`.Session.info` attribute to | Mike Bayer | 2013-11-19 | 2 | -1/+7 |
| | | | | :class:`.scoped_session`. | ||||
* | - apply a timeout to all join() calls for test_pool | Mike Bayer | 2013-11-17 | 1 | -5/+10 |
| | | | | - use thread.join() for waiters_handled test | ||||
* | Merge branch 'master' into rel_0_9 | Mike Bayer | 2013-11-17 | 1 | -1/+1 |
|\ | |||||
| * | name it with a dash | Mike Bayer | 2013-11-17 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'master' into rel_0_9 | Mike Bayer | 2013-11-17 | 30 | -771/+37 |
|\ \ | |/ | |||||
| * | - remove informix dialect, moved out to ↵ | Mike Bayer | 2013-11-17 | 30 | -771/+37 |
| | | | | | | | | | | | | https://bitbucket.org/zzzeek/sqlalchemy_informixdb - remove informix, maxdb, access symbols from tests etc. | ||||
* | | Merge branch 'master' into rel_0_9 | Mike Bayer | 2013-11-14 | 2 | -20/+21 |
|\ \ | |/ | |||||
| * | sync up some changes for #2604 and #2607 from 0.7.10, 0.8.0b2 | Mike Bayer | 2013-11-14 | 2 | -20/+21 |
| | | |||||
* | | Merge branch 'master' into rel_0_9 | Mike Bayer | 2013-11-14 | 34 | -62/+105 |
|\ \ | |/ | |||||
| * | Merge branch 'master' of github.com:vrajmohan/sqlalchemy into mm | Mike Bayer | 2013-11-14 | 34 | -62/+105 |
| |\ | |||||
| | * | Fix cross referencespr/44 | Vraj Mohan | 2013-11-14 | 5 | -14/+15 |
| | | | |||||
| | * | Add undocumented members to resolve cross references | Vraj Mohan | 2013-11-14 | 1 | -0/+1 |
| | | | |||||
| | * | Fix method name | Vraj Mohan | 2013-11-14 | 1 | -2/+2 |
| | | | |||||
| | * | Ensure API generation | Vraj Mohan | 2013-11-14 | 1 | -0/+3 |
| | | | |||||
| | * | Remove references to (previously removed) AbstractType | Vraj Mohan | 2013-11-14 | 2 | -5/+1 |
| | | | |||||
| | * | Import CTE so that API doc can be generated | Vraj Mohan | 2013-11-14 | 1 | -1/+1 |
| | | | |||||
| | * | Change CompileException references to ConpileError | Vraj Mohan | 2013-11-14 | 2 | -3/+3 |
| | | | |||||
| | * | Fix references to exceptions | Vraj Mohan | 2013-11-14 | 3 | -6/+6 |
| | | | |||||
| | * | Ensure API generation of inherited members to resolve references | Vraj Mohan | 2013-11-14 | 1 | -0/+1 |
| | | | |||||
| | * | Fix cross reference | Vraj Mohan | 2013-11-14 | 3 | -5/+5 |
| | | | |||||
| | * | Ensure API generation | Vraj Mohan | 2013-11-14 | 1 | -0/+2 |
| | | | |||||
| | * | Remove extra indentation | Vraj Mohan | 2013-11-14 | 1 | -1/+1 |
| | | | |||||
| | * | Ensure API generation and fix cross references | Vraj Mohan | 2013-11-13 | 4 | -4/+31 |
| | | | |||||
| | * | Fix cross-references in changelogs | Vraj Mohan | 2013-11-13 | 3 | -15/+15 |
| | | | |||||
| | * | Ensure API doc for make_url and resolve references | Vraj Mohan | 2013-11-13 | 3 | -3/+5 |
| | | | |||||
| | * | Suppress warnings about files not being included in any toctree | Vraj Mohan | 2013-11-13 | 5 | -0/+10 |
| | | | |||||
| | * | Fix indentation and escape *args and **kwargs | Vraj Mohan | 2013-11-13 | 2 | -3/+3 |
| | | | |||||
* | | | Merge branch 'master' into rel_0_9 | Mike Bayer | 2013-11-14 | 1 | -0/+3 |
|\ \ \ | |/ / | |||||
| * | | do the wheel thing | Mike Bayer | 2013-11-14 | 1 | -0/+3 |
| | | | |||||
* | | | Merge branch 'master' into rel_0_9 | Mike Bayer | 2013-11-13 | 3 | -2/+19 |
|\ \ \ | |/ / |