From 05b44779a74d8ba74202c573bc68a3528c800558 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 14 Jul 2008 19:42:42 +0000 Subject: [PATCH] 2.4 support ! --- test/dialect/mssql.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test/dialect/mssql.py b/test/dialect/mssql.py index 0858644158..26f8892bd8 100755 --- a/test/dialect/mssql.py +++ b/test/dialect/mssql.py @@ -257,10 +257,11 @@ def full_text_search_missing(): try: connection = testing.db.connect() - connection.execute("CREATE FULLTEXT CATALOG Catalog AS DEFAULT") - return False - except: - return True + try: + connection.execute("CREATE FULLTEXT CATALOG Catalog AS DEFAULT") + return False + except: + return True finally: connection.close() -- 2.47.3