From: Denis Laxalde Date: Tue, 20 May 2025 14:43:25 +0000 (+0200) Subject: Skip reflection test about ON DELETE with column list for PostgreSQL < 15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=349d09aa6d67ae69dd778411accb5614152654cf;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Skip reflection test about ON DELETE with column list for PostgreSQL < 15 Follow up commit 39bb17442ce6ac9a3dde5e2b72376b77ffce5e28. --- diff --git a/test/dialect/postgresql/test_reflection.py b/test/dialect/postgresql/test_reflection.py index ebe751b5b3..f803069174 100644 --- a/test/dialect/postgresql/test_reflection.py +++ b/test/dialect/postgresql/test_reflection.py @@ -910,6 +910,9 @@ class ReflectionTest( subject = Table("subject", meta2, autoload_with=connection) eq_(subject.primary_key.columns.keys(), ["p2", "p1"]) + @testing.skip_if( + "postgresql < 15.0", "on delete with column list not supported" + ) def test_reflected_foreign_key_ondelete_column_list( self, metadata, connection ):