| Commit message (Collapse) | Author | Age | Files | Lines |
| |\
| |
| |
| | |
Pulling from new fork of SQLAlchemy
|
| | |
| |
| |
| | |
it and move on
|
| |/ |
|
| | |
|
| | |
|
| |
|
|
|
|
| |
type class as an argument which is internally converted to an
instance, using the same convention long established by other
constructs such as :class:`.Column`. fixes #3122
|
| | |
|
| |
|
|
| |
to get all flake8 passing
|
| | |
|
| |
|
|
|
|
|
|
| |
MySQLconnector. This was set at True for some reason. The "buffered"
flag unfortunately must stay at True as MySQLconnector does not allow
a cursor to be closed unless all results are fully fetched. fixes #2515
- lots of MySQL tests seemed to not be hitting all backends, so we should
be getting some mysqlconnector failures now
|
| | |
|
| |
|
|
|
| |
distutils appropriately, and errors would be emitted at the end
of the test suite.
|
| | |
|
| |
|
|
|
|
|
| |
updates, and needs to be set to `synchronize_session=False` or
`synchronize_session='fetch'`; this now raises an exception, with a
message to change the synchronize setting. This will be only a warning
in 0.9.7. fixes #3117
|
| |\
| |
| | |
pg8000 passing test/sql
|
| | | |
|
| | | |
|
| | |
| |
| |
| | |
implements PG's to_tsquery('regconfig', 'arg') pattern. fixes #3078
|
| | | |
|
| | | |
|
| |\ \
| |/
|/| |
Postgres 9.4 Jsonb support
|
| | |
| |
| |
| | |
need to see if equality already works.
|
| | |
| |
| |
| | |
in the tests.
|
| | |
| |
| |
| |
| |
| | |
from hstore that don't apply.
Add tests for ? and @> operators.
|
| | | |
|
| | |
| |
| |
| | |
the JSON tests as all of these should be applicable as well.
|
| | |
| |
| |
| |
| | |
datatype - this does not add any of the additional support for
querying/indexing yet.
|
| |\ \
| | |
| | | |
Typo fixes
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
Return the assigned value in MultableDict.setdefault
|
| | | |/
| |/| |
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
pg8000 passing test/sql/test_types.py
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Opened up two tests that now pass with pg8000. Also, rewrote two tests
to use actual tables rather than having a round trip in a single select
statement. This is necessary for pg8000 because it sends strings to the
server with type 'unknown' and lets the server work out the type.
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | | |
Fixed support for multivalue inserts for MS SQL 2008
|
| | | | | |
| | | | |
| | | | |
| | | | | |
supported.
|
| | | | | | |
|
| | | | | |
| | | | |
| | | | |
| | | | | |
the pg8000 DBAPI's encoding behavior, fixes #3112.
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
in all cases unconditionally, the number of use cases that go beyond what
dbapi_error() is expecting has gone too far for an 0.9 release.
Additionally, the number of things we'd like to track is really a lot
more than the five arguments here, and ExecutionContext is really not
suitable as totally public API for this. So restore dbapi_error
to its old version, deprecate, and build out handle_error instead.
This is a lot more extensible and doesn't get in the way of anything
compatibility-wise.
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
:attr:`.ExecutionContext.is_disconnect` which are meaningful within
the :meth:`.ConnectionEvents.dbapi_error` handler to see both the
original DBAPI error as well as whether or not it represents
a disconnect.
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
have been enhanced such that the function handler is now capable
of raising or returning a new exception object, which will replace
the exception normally being thrown by SQLAlchemy.
fixes #3076
|
| | | | | |
| | | | |
| | | | |
| | | | | |
fixes #3110
|
| | | | | | |
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
primary key change within a savepoint block would not
participate in being restored to their former state (not in
session, in session, previous PK) after the outer transaction
were rolled back. fixes #3108
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
as the attribute and probably just replaced itself, so that is
now _set_enable_single_crit
- as a side effect of the main issue fixed here, correct the case in
adjust_for_single_inheritance where the same mapper appears more
than once in mapper_adapter_map; run through a set() for uniqueness.
- Fixed bug in subquery eager loading in conjunction with
:func:`.with_polymorphic`, the targeting of entities and columns
in the subquery load has been made more accurate with respect
to this type of entity and others. Fixes #3106
|