From 2244c3febe4a21667a842b1050fa9e3ef9d6a7ea Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 16 Jan 2013 23:53:00 -0500 Subject: [PATCH] - "postgres_where" has been removed --- test/dialect/test_postgresql.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index 4a506d5446..ff958e7b86 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -180,17 +180,6 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): 'USING hash (data)', dialect=postgresql.dialect()) - @testing.uses_deprecated(r".*'postgres_where' argument has been " - "renamed.*") - def test_old_create_partial_index(self): - tbl = Table('testtbl', MetaData(), Column('data', Integer)) - idx = Index('test_idx1', tbl.c.data, - postgres_where=and_(tbl.c.data > 5, tbl.c.data - < 10)) - self.assert_compile(schema.CreateIndex(idx), - 'CREATE INDEX test_idx1 ON testtbl (data) ' - 'WHERE data > 5 AND data < 10', - dialect=postgresql.dialect()) def test_extract(self): t = table('t', column('col1', DateTime), column('col2', Date), -- 2.47.2