From 084b559b44bba73becc7e7fa7636d4c5ac99bb55 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 10 Oct 2012 19:34:29 -0400 Subject: - [feature] Added "collation" parameter to all String types. When present, renders as COLLATE . This to support the COLLATE keyword now supported by several databases including MySQL, SQLite, and Postgresql. [ticket:2276] - [change] The Text() type renders the length given to it, if a length was specified. --- lib/sqlalchemy/testing/requirements.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/sqlalchemy/testing') diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py index 560bc9c97..bdd619bad 100644 --- a/lib/sqlalchemy/testing/requirements.py +++ b/lib/sqlalchemy/testing/requirements.py @@ -162,3 +162,9 @@ class SuiteRequirements(Requirements): @property def index_reflection(self): return exclusions.open() + + @property + def unbounded_varchar(self): + """Target database must support VARCHAR with no length""" + + return exclusions.open() -- cgit v1.2.1