From: Mike Bayer Date: Wed, 16 Mar 2016 19:25:01 +0000 (-0400) Subject: - changelog for #361, fixes #361 X-Git-Tag: rel_0_8_6~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11ad2a8dff73ce891d34b5cb54a23da90bb93481;p=thirdparty%2Fsqlalchemy%2Falembic.git - changelog for #361, fixes #361 - rename test --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 4989d49b..a4fea827 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -6,6 +6,15 @@ Changelog .. changelog:: :version: 0.8.6 + .. change:: + :tags: bug, batch + :tickets: 361 + :pullreq: bitbucket:55 + + Fixed bug introduced by the fix for :ticket:`338` in version 0.8.4 + where a server default could no longer be dropped in batch mode. + Pull request courtesy Martin Domke. + .. change:: :tags: bug, batch, mssql :pullreq: bitbucket:53 diff --git a/tests/test_batch.py b/tests/test_batch.py index 829dc1b1..6e55eaca 100644 --- a/tests/test_batch.py +++ b/tests/test_batch.py @@ -369,7 +369,7 @@ class BatchApplyTest(TestBase): new_table.c.y.server_default.arg, "10" ) - def test_change_server_default(self): + def test_drop_server_default(self): impl = self._server_default_fixture() impl.alter_column('tname', 'thing', server_default=None) new_table = self._assert_impl(