server/querier.py
branchstable
changeset 2101 08003e0354a7
parent 1977 606923dff11b
child 2476 1294a6bdf3bf
equal deleted inserted replaced
2100:89b825cdec74 2101:08003e0354a7
   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: