Change-Id: Ie0b78c79367933486528ca0ba686d4a9f16922b1
Pull-request: https://github.com/zzzeek/sqlalchemy/pull/370
raise exc.ArgumentError(
"Can't redefine 'quote' or 'quote_schema' arguments")
+ if 'comment' in kwargs:
+ self.comment = kwargs.pop('comment', None)
+
if 'info' in kwargs:
self.info = kwargs.pop('info')
- self.comment = kwargs.pop('comment', None)
-
if autoload:
if not autoload_replace:
# don't replace columns already present.
eq_(t2.comment, 't1 comment')
eq_(t2.c.id.comment, 'c1 comment')
+ t3 = Table('sometable', m2, extend_existing=True)
+ eq_(t3.comment, 't1 comment')
+ eq_(t3.c.id.comment, 'c1 comment')
+
@testing.requires.check_constraint_reflection
@testing.provide_metadata
def test_check_constraint_reflection(self):