Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Manual fixes for style E501 errors, etc. in dialects packagepr/111 | Brian Jarrett | 2014-07-13 | 34 | -639/+834 |
| | |||||
* | Style fixes for dialects package | Brian Jarrett | 2014-07-12 | 40 | -947/+1036 |
| | |||||
* | - break up the <authors> copyright comment as part of a pass | Mike Bayer | 2014-07-09 | 45 | -45/+90 |
| | | | | to get all flake8 passing | ||||
* | - Changed the default value of "raise_on_warnings" to False for | Mike Bayer | 2014-07-09 | 1 | -1/+3 |
| | | | | | | | | 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 | ||||
* | - add postgresql_regconfig argument to PG dialect for match() operator, | jonathan vanasco | 2014-07-08 | 1 | -5/+57 |
| | | | | implements PG's to_tsquery('regconfig', 'arg') pattern. fixes #3078 | ||||
* | Merge pull request #101 from ddimmich/master | mike bayer | 2014-07-07 | 3 | -3/+126 |
|\ | | | | | Postgres 9.4 Jsonb support | ||||
| * | jsonb support for <@, ?| and ?& added.pr/101 | Damian Dimmich | 2014-07-01 | 1 | -1/+18 |
| | | | | | | | | need to see if equality already works. | ||||
| * | minor cleanup of the jsonb - had extraneous operators that where copied | Damian Dimmich | 2014-06-28 | 1 | -5/+1 |
| | | | | | | | | | | | | from hstore that don't apply. Add tests for ? and @> operators. | ||||
| * | add has_key & contains operators for jsonb (ported over from hstore) | Damian Dimmich | 2014-06-28 | 1 | -21/+17 |
| | | |||||
| * | initial support for JSONB - this only allows you to define the JSONB | Damian Dimmich | 2014-06-24 | 3 | -3/+117 |
| | | | | | | | | | | datatype - this does not add any of the additional support for querying/indexing yet. | ||||
* | | Merge pull request #98 from abbec/mssql2008-multivalues-insert | mike bayer | 2014-07-06 | 1 | -0/+2 |
|\ \ | | | | | | | Fixed support for multivalue inserts for MS SQL 2008 | ||||
| * | | - Fixed support for multivalue inserts for MS SQL 2008 since it is actually ↵pr/98 | Albert Cervin | 2014-06-16 | 1 | -0/+2 |
| | | | | | | | | | | | | supported. | ||||
* | | | - clarify that the pg8000 backend has no impact of any kind on | Mike Bayer | 2014-07-04 | 1 | -8/+9 |
| | | | | | | | | | | | | the pg8000 DBAPI's encoding behavior, fixes #3112. | ||||
* | | | - add link to dialect docs for SQLite autoincrement from column autoincrement, | Mike Bayer | 2014-07-03 | 1 | -2/+4 |
| | | | | | | | | | | | | fixes #3110 | ||||
* | | | - MySQL error 2014 "commands out of sync" appears to be raised as a | Mike Bayer | 2014-06-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | ProgrammingError, not OperationalError, in modern MySQL-Python versions; all MySQL error codes that are tested for "is disconnect" are now checked within OperationalError and ProgrammingError regardless. fixes #3101 | ||||
* | | | - write some really complete docs on MSSQL autoincrement, fixes #3094 | Mike Bayer | 2014-06-24 | 1 | -10/+132 |
| |/ |/| | |||||
* | | - Added a new type :class:`.postgresql.OID` to the Postgresql dialect. | Mike Bayer | 2014-06-20 | 2 | -2/+15 |
| | | | | | | | | | | | | | | | | While "oid" is generally a private type within PG that is not exposed in modern versions, there are some PG use cases such as large object support where these types might be exposed, as well as within some user-reported schema reflection use cases. fixes #3002 | ||||
* | | - Fixed bug where column names added to ``mysql_length`` parameter | Mike Bayer | 2014-06-18 | 1 | -3/+7 |
|/ | | | | | | | | on an index needed to have the same quoting for quoted names in order to be recognized. The fix makes the quotes optional but also provides the old behavior for backwards compatibility with those using the workaround. fixes #3085 | ||||
* | - remove drizzle dialect | Mike Bayer | 2014-05-30 | 5 | -589/+123 |
| | | | | | - restore mysqldb fully within dialects/mysql/, it's no longer a connector. fixes #2984 | ||||
* | - changelog + docs for pg8000 transaction isolation level | Mike Bayer | 2014-05-30 | 3 | -2/+39 |
| | |||||
* | Merge branch 'master' of https://github.com/tlocke/sqlalchemy into tlocke-master | Mike Bayer | 2014-05-30 | 1 | -21/+40 |
|\ | |||||
| * | PEP 8 tidy of pg8000 dialect and postgresql/test_dialect.pypr/88 | Tony Locke | 2014-05-22 | 1 | -14/+11 |
| | | |||||
| * | Autocommit isolation level for postgresql+pg8000 | Tony Locke | 2014-05-22 | 1 | -0/+24 |
| | | | | | | | | | | | | | | | | As with postgresql+psycopg2, execution_options(isolation_level='AUTOCOMMIT') now works for the postgresql+pg8000 dialect. Also enabled the autocommit test in test_dialect.py for pg8000. | ||||
| * | Updated doc string for postgresql+pg8000 dialect | Tony Locke | 2014-05-21 | 1 | -10/+8 |
| | | |||||
| * | pg8000.dbapi is now just pg8000 | Tony Locke | 2014-05-21 | 1 | -1/+1 |
| | | |||||
* | | update comments | Mike Bayer | 2014-05-30 | 1 | -4/+6 |
| | | |||||
* | | Merge branch 'psycopg_disconnect' of https://github.com/dirkmueller/sqlalchemy | Mike Bayer | 2014-05-30 | 1 | -1/+5 |
|\ \ | |||||
| * | | Another Variant for detecting if a connection is closedpr/87 | Dirk Mueller | 2014-05-11 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | | | | | | If there is a closed attribute on the connection and it is true, return true. Implements a todo in the code and helps in one specific disconnect case where it previously did not match because the error message was "unknown error". | ||||
* | | | - Added the ``hashable=False`` flag to the PG :class:`.HSTORE` type, which | Mike Bayer | 2014-05-25 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | is needed to allow the ORM to skip over trying to "hash" an ORM-mapped HSTORE column when requesting it in a mixed column/entity list. Patch courtesy Gunnlaugur Þór Briem. Fixes #3053 | ||||
* | | | - repair oracle compilation for new limit/offset system. | Mike Bayer | 2014-05-24 | 1 | -15/+26 |
| | | | |||||
* | | | - fix some identity map accessors | Mike Bayer | 2014-05-24 | 1 | -1/+1 |
| | | | | | | | | | | | | - fix a bad comparison in MySQL w/ limit/offset thing | ||||
* | | | - more tests, including backend tests | Mike Bayer | 2014-05-16 | 1 | -17/+34 |
| | | | | | | | | | | | | - implement for SQL server, use window functions when simple limit/offset not available | ||||
* | | | Merge branch 'issue_3034' of ↵ | Mike Bayer | 2014-05-16 | 7 | -40/+44 |
|\ \ \ | |_|/ |/| | | | | | https://bitbucket.org/dobesv/sqlalchemy/branch/issue_3034 into ticket_3034 | ||||
| * | | Remove unused import | Dobes Vandermeer | 2014-04-25 | 1 | -1/+0 |
| | | | |||||
| * | | Remove unused import | Dobes Vandermeer | 2014-04-25 | 1 | -1/+0 |
| | | | |||||
| * | | Pull out offset/limit to a local variable to reduce the impact of the ↵ | Dobes Vandermeer | 2014-04-25 | 1 | -8/+10 |
| | | | | | | | | | | | | inefficient select._offset and select._limit operations. | ||||
| * | | Remove unused import | Dobes Vandermeer | 2014-04-25 | 1 | -1/+0 |
| | | | |||||
| * | | Use _offset_clause and _limit_clause, which are always Visitable and usually ↵ | Dobes Vandermeer | 2014-04-25 | 5 | -25/+26 |
| | | | | | | | | | | | | a BindParameter, instead of _offset and _limit in GenerativeSelect. | ||||
| * | | Extract limit/offset to variables | Dobes Vandermeer | 2014-04-25 | 1 | -5/+7 |
| | | | |||||
| * | | Proof-of-concept implementation of supporting bindparam for offset and limit ↵ | Dobes Vandermeer | 2014-04-24 | 3 | -7/+9 |
| | | | | | | | | | | | | on a query. | ||||
* | | | - changelog for #2785 | Mike Bayer | 2014-05-16 | 1 | -3/+6 |
| | | | | | | | | | | | | | | | - refactor tests a bit fixes #2785 | ||||
* | | | Merge branch 'zero_indexes-param-for-postgresql-ARRAY-type' of ↵ | Mike Bayer | 2014-05-16 | 1 | -1/+16 |
|\ \ \ | | | | | | | | | | | | | https://bitbucket.org/LevonXXL/sqlalchemy/overview into t | ||||
| * | | | zero_indexes-param-for-postgresql-ARRAY-type | Alexey Terentev | 2014-05-13 | 1 | -1/+16 |
| | | | | |||||
* | | | | Merged in mineo/sqlalchemy/mineo/posgtresql-postgresql-1399232068499 (pull ↵ | Mike Bayer | 2014-05-12 | 1 | -1/+1 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | request #17) Posgtresql -> PostgreSQL | ||||
| * | | | | Posgtresql -> PostgreSQL | Wieland Hoffmann | 2014-05-04 | 1 | -1/+1 |
| | |_|/ | |/| | | |||||
* | | | | Merged in WSMcG/sqlalchemy (pull request #15) | Mike Bayer | 2014-05-12 | 1 | -1/+1 |
|\ \ \ \ | |_|/ / |/| | | | Added optional '=' to MySQL KEY_BLOCK_SIZE regex | ||||
| * | | | Added optional '=' to MySQL KEY_BLOCK_SIZE regex | W. Sean McGivern | 2014-04-19 | 1 | -1/+1 |
| | |/ | |/| | |||||
* | | | Documentation fix-up: "its" vs. "it's"pr/91 | Matthias Urlichs | 2014-05-11 | 4 | -4/+4 |
| |/ |/| | | | | | | | | | | | | | | | Removed ungrammatical apostrophes from documentation, replacing "it's" with "its" where appropriate (but in a few cases with "it is" when that read better). While doing that, I also fixed a couple of minor typos etc. as I noticed them. | ||||
* | | Fix many typos throughout the codebasepr/85 | Alex Gaynor | 2014-04-26 | 7 | -13/+13 |
|/ | | | | Found using: https://github.com/intgr/topy | ||||
* | - Revised the query used to determine the current default schema name | Mike Bayer | 2014-04-17 | 1 | -14/+8 |
| | | | | | | | to use the ``database_principal_id()`` function in conjunction with the ``sys.database_principals`` view so that we can determine the default schema independently of the type of login in progress (e.g., SQL Server, Windows, etc). fixes #3025 |