From 00f3ca98ce24577f6a7fb40efd15bdb2d86acd26 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 25 Aug 2013 12:33:37 -0400 Subject: forgot to add system to the copy() method Conflicts: lib/sqlalchemy/schema.py --- test/sql/test_compiler.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test/sql') diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py index d52d80429..a3ec3af84 100644 --- a/test/sql/test_compiler.py +++ b/test/sql/test_compiler.py @@ -2809,6 +2809,13 @@ class DDLTest(fixtures.TestBase, AssertsCompiledSQL): schema.CreateTable(t), "CREATE TABLE t (x INTEGER, z INTEGER)" ) + m2 = MetaData() + t2 = t.tometadata(m2) + self.assert_compile( + schema.CreateTable(t2), + "CREATE TABLE t (x INTEGER, z INTEGER)" + ) + class InlineDefaultTest(fixtures.TestBase, AssertsCompiledSQL): __dialect__ = 'default' -- cgit v1.2.1