server/mssteps.py
changeset 449 38bf75d3c600
parent 448 ce91d0f23ed2
child 470 5d4a9db36738
equal deleted inserted replaced
448:ce91d0f23ed2 449:38bf75d3c600
   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[self.:limit]
   279             result = result[: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)"""