server/mssteps.py
changeset 470 5d4a9db36738
parent 449 38bf75d3c600
child 1802 d628defebc17
equal deleted inserted replaced
469:365826a58664 470:5d4a9db36738
   274             result &= frozenset(step.execute())
   274             result &= frozenset(step.execute())
   275         result = list(result)
   275         result = list(result)
   276         if self.offset:
   276         if self.offset:
   277             result = result[self.offset:]
   277             result = result[self.offset:]
   278         if self.limit:
   278         if self.limit:
   279             result = result[:limit]
   279             result = result[:self.limit]
   280         return result
   280         return result
   281 
   281 
   282 
   282 
   283 class UnionFetchStep(Step):
   283 class UnionFetchStep(Step):
   284     """union results of child steps using temporary tables (e.g. FetchStep)"""
   284     """union results of child steps using temporary tables (e.g. FetchStep)"""