server/querier.py
changeset 2144 51c84d585456
parent 2101 08003e0354a7
child 2476 1294a6bdf3bf
equal deleted inserted replaced
2141:0072247db207 2144:51c84d585456
   296         msgs = []
   296         msgs = []
   297         # dictionnary of variables restricted for security reason
   297         # dictionnary of variables restricted for security reason
   298         localchecks = {}
   298         localchecks = {}
   299         if rqlst.where is not None:
   299         if rqlst.where is not None:
   300             varkwargs = var_kwargs(rqlst.where, self.args)
   300             varkwargs = var_kwargs(rqlst.where, self.args)
   301             neweids = self.session.query_data('neweids', ())
   301             neweids = self.session.transaction_data.get('neweids', ())
   302         else:
   302         else:
   303             varkwargs = None
   303             varkwargs = None
   304         restricted_vars = set()
   304         restricted_vars = set()
   305         newsolutions = []
   305         newsolutions = []
   306         for solution in rqlst.solutions:
   306         for solution in rqlst.solutions: