From: FeeeeK <26704473+FeeeeK@users.noreply.github.com> Date: Fri, 13 Dec 2024 11:02:43 +0000 (+0300) Subject: Make serial integer types test run on all pg dialects X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbdaf613c1d79569214e0c29e72d85538ac5ef52;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Make serial integer types test run on all pg dialects --- diff --git a/test/dialect/postgresql/test_dialect.py b/test/dialect/postgresql/test_dialect.py index db2d5e73dc..7477fb49f1 100644 --- a/test/dialect/postgresql/test_dialect.py +++ b/test/dialect/postgresql/test_dialect.py @@ -1549,7 +1549,6 @@ $$ LANGUAGE plpgsql; stmt = text("select cast('hi' as char) as hi").columns(hi=Numeric) assert_raises(exc.InvalidRequestError, connection.execute, stmt) - @testing.only_on("postgresql+psycopg2") def test_serial_integer(self): class BITD(TypeDecorator): impl = Integer