]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
whats a big commit without some errant print statements ? :)
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 1 Sep 2007 19:51:25 +0000 (19:51 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 1 Sep 2007 19:51:25 +0000 (19:51 +0000)
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/sql/compiler.py

index deea34da38a2de769d2d14f6b2334e5561d5447d..09d17f92382682b6aebf48440a432a72dc25db91 100644 (file)
@@ -322,7 +322,6 @@ class DefaultExecutionContext(base.ExecutionContext):
                 if self.isinsert:
                     self._last_inserted_ids = []
                 for c in self.compiled.prefetch:
-                    print "PREFETCH COL", c.key
                     if self.isinsert:
                         val = drunner.get_column_default(c)
                     else:
index e8cc3378ea01378e4a52afa0616b8bf8aa6fe456..617b2468a13d9f1833d4d42c881ba97553d55809 100644 (file)
@@ -709,7 +709,6 @@ class DefaultCompiler(engine.Compiled, visitors.ClauseVisitor):
                                     values.append((c, proc))
                                     self.postfetch.add(c)
                         else:
-                            print "ISINSERT, HAS A SEQUENCE, IS PRIMARY KEY, ADDING PREFETCH:", c.key
                             values.append((c, create_bind_param(c, None)))
                             self.prefetch.add(c)
                 elif self.isupdate: