(func.to_tsquery,),
(func.plainto_tsquery,),
(func.phraseto_tsquery,),
- (func.websearch_to_tsquery,),
+ (func.websearch_to_tsquery, testing.skip_if("postgresql < 11")),
argnames="to_ts_func",
)
@testing.variation("use_regconfig", [True, False, "literal"])
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
):
(postgresql.INET, "127.0.0.1"),
(postgresql.CIDR, "192.168.100.128/25"),
(postgresql.MACADDR, "08:00:2b:01:02:03"),
- (postgresql.MACADDR8, "08:00:2b:01:02:03:04:05"),
+ (
+ postgresql.MACADDR8,
+ "08:00:2b:01:02:03:04:05",
+ testing.skip_if("postgresql < 10"),
+ ),
argnames="column_type, value",
id_="na",
)