session.merge() doesn't work for objects that are mapped against multiple tables

Issue #236 resolved
Former user created an issue

If you have an object that is mapped against more than one table, code like

  pickledObj = pickle.dumps(obj)
  unpickledObj = pickle.loads(pickledObj)
  obj2 = session.merge(unpickledObj)

fails with an error because too many arguments are being passed to the {{{session.get()}}} function.

Comments (3)

  1. Log in to comment