blown away if it hadnt been loaded
- added unique_connection() method to engine, connection pool to return a connection
that is not part of the thread-local context or any current transaction
+- added distinct() function to column elements so you can do func.count(mycol.distinct())
0.1.4
- create_engine() now uses genericized parameters; host/hostname, db/dbname/database,
return self._compare('LIKE', "%" + str(other))
def label(self, name):
return Label(name, self)
+ def distinct(self):
+ return CompoundClause(None,"DISTNCT", self)
def op(self, operator):
return lambda other: self._compare(operator, other)
# and here come the math operators: