From fbdaf613c1d79569214e0c29e72d85538ac5ef52 Mon Sep 17 00:00:00 2001 From: FeeeeK <26704473+FeeeeK@users.noreply.github.com> Date: Fri, 13 Dec 2024 14:02:43 +0300 Subject: [PATCH] Make serial integer types test run on all pg dialects --- test/dialect/postgresql/test_dialect.py | 1 - 1 file changed, 1 deletion(-) 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 -- 2.47.3