Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - bzzt, fix the base _post_configure_engine() call to not fail | Mike Bayer | 2015-09-29 | 1 | -1/+1 |
| | |||||
* | - limit the search for schemas to not include "temp", which is sort of an ↵ | Mike Bayer | 2015-09-28 | 1 | -3/+28 |
| | | | | | | | | | | implicit schema - repair the CREATE INDEX ddl for schemas - update provisioning to include support for setting up ATTACH DATABASE up front for the test_schema; enable "schemas" testing for SQLite - changelog / migration notes for new SQLite schema support - include the "schema" as the "remote_schema" when we reflect SQLite FKs | ||||
* | - db_opts doesn't need to be a global since we no longer have any global | Mike Bayer | 2015-07-17 | 1 | -1/+2 |
| | | | | | option for it. keep it local to production of config so values don't leak in a multi --db situation. | ||||
* | - Added a new dialect flag to the MSSQL dialect | Mike Bayer | 2015-05-24 | 1 | -0/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | ``legacy_schema_aliasing`` which when set to False will disable a very old and obsolete behavior, that of the compiler's attempt to turn all schema-qualified table names into alias names, to work around old and no longer locatable issues where SQL server could not parse a multi-part identifier name in all circumstances. The behavior prevented more sophisticated statements from working correctly, including those which use hints, as well as CRUD statements that embed correlated SELECT statements. Rather than continue to repair the feature to work with more complex statements, it's better to just disable it as it should no longer be needed for any modern SQL server version. The flag defaults to True for the 1.0.x series, leaving current behavior unchanged for this version series. In the 1.1 series, it will default to False. For the 1.0 series, when not set to either value explicitly, a warning is emitted when a schema-qualified table is first used in a statement, which suggests that the flag be set to False for all modern SQL Server versions. fixes #3424 fixes #3430 | ||||
* | cleanup exception handling - use new exception hierarchy (since python 2.5)pr/140 | ndparker | 2014-10-02 | 1 | -15/+5 |
| | |||||
* | improve exception vs. exit handling | ndparker | 2014-09-23 | 1 | -0/+10 |
| | |||||
* | - remove some crufty old testing options | Mike Bayer | 2014-09-14 | 1 | -0/+189 |
- reestablish the "bootstrap" system of loading the test runners in testing/plugin; using the updated approach we just came up with for alembic. Coverage should be fixed now when running either py.test or nose. fixes #3196 - upgrade tox.ini and start using a .coveragerc file |