From a8733935b2794c213a2ee8c3dd7a09319ae0ee3b Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 21 Jul 2005 02:24:54 +0000 Subject: [PATCH] --- lib/sqlalchemy/schema.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index c840392a26..8c9d6f1e4c 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -139,6 +139,9 @@ class Column(SchemaItem): def __gt__(self, other): return self._impl.__gt__(other) def __ge__(self, other): return self._impl.__ge__(other) def __str__(self): return self._impl.__str__() + def like(self, other):return self._impl.like(other) + def startswith(self, other):return self._impl.startswith(other) + def endswith(self, other):return self._impl.endswith(other) class Relation(SchemaItem): -- 2.47.2