mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-29 20:14:55 -04:00
- errant maxdb
- errant pdbs
This commit is contained in:
@@ -15,7 +15,6 @@ from ..dialects.mysql import base as mysql
|
||||
from ..dialects.drizzle import base as drizzle
|
||||
from ..dialects.oracle import base as oracle
|
||||
from ..dialects.firebird import base as firebird
|
||||
from ..dialects.maxdb import base as maxdb
|
||||
from ..dialects.informix import base as informix
|
||||
from ..dialects.mssql import base as mssql
|
||||
from ..dialects.sybase import base as sybase
|
||||
@@ -25,7 +24,6 @@ __all__ = (
|
||||
'drizzle',
|
||||
'firebird',
|
||||
'informix',
|
||||
'maxdb',
|
||||
'mssql',
|
||||
'mysql',
|
||||
'postgresql',
|
||||
|
||||
@@ -1812,8 +1812,6 @@ class Session(_SessionClassMethods):
|
||||
else:
|
||||
proc = new.union(dirty).difference(deleted)
|
||||
|
||||
import pdb
|
||||
pdb.set_trace()
|
||||
for state in proc:
|
||||
is_orphan = _state_mapper(state)._is_orphan(state) and state.has_identity
|
||||
flush_context.register_object(state, isdelete=is_orphan)
|
||||
|
||||
@@ -226,9 +226,6 @@ class UOWTransaction(object):
|
||||
def register_object(self, state, isdelete=False,
|
||||
listonly=False, cancel_delete=False,
|
||||
operation=None, prop=None):
|
||||
if isdelete:
|
||||
import pdb
|
||||
pdb.set_trace()
|
||||
if not self.session._contains_state(state):
|
||||
if not state.deleted and operation is not None:
|
||||
util.warn("Object of type %s not in session, %s operation "
|
||||
|
||||
Reference in New Issue
Block a user