From d3b65cd9bc118a5653246dfa0e179add7249703f Mon Sep 17 00:00:00 2001 From: Noufal Ibrahim Date: Tue, 10 Dec 2013 00:47:01 +0530 Subject: [PATCH] Adds test to verify tsvector creation. Signed-off-by: Noufal Ibrahim --- test/dialect/postgresql/test_types.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index 0675ebd5d3..dc7b246641 100644 --- a/test/dialect/postgresql/test_types.py +++ b/test/dialect/postgresql/test_types.py @@ -836,7 +836,8 @@ class SpecialTypesTest(fixtures.TestBase, ComparesTables, AssertsCompiledSQL): Column('plain_interval', postgresql.INTERVAL), Column('year_interval', y2m()), Column('month_interval', d2s()), - Column('precision_interval', postgresql.INTERVAL(precision=3)) + Column('precision_interval', postgresql.INTERVAL(precision=3)), + Column('tsvector_document', postgresql.TSVECTOR) ) metadata.create_all() -- 2.47.3