obscure types (like "varchar() binary" in MS 4.0)
- auto_setinputsizes defaults to True for Oracle, fixed cases where
it improperly propigated bad types.
+- mysql:
+ - added a catchall **kwargs to MSString, to help reflection of
+ obscure types (like "varchar() binary" in MS 4.0)
+
- orm:
- the full featureset of the SelectResults extension has been merged
into a new set of methods available off of Query. These methods
return "LONGTEXT"
class MSString(sqltypes.String):
- def __init__(self, length=None, *extra):
+ def __init__(self, length=None, *extra, **kwargs):
sqltypes.String.__init__(self, length=length)
def get_col_spec(self):
return "VARCHAR(%(length)s)" % {'length' : self.length}