server/querier.py
branchstable
changeset 5168 1ab032df5ca3
parent 5072 072ae171aeb0
child 5177 395e1ff018ae
child 5419 0b7805928a27
equal deleted inserted replaced
5167:529861a73ec8 5168:1ab032df5ca3
   161                 result = step.execute()
   161                 result = step.execute()
   162             # the latest executed step contains the full query result
   162             # the latest executed step contains the full query result
   163             return result
   163             return result
   164         finally:
   164         finally:
   165             self.clean()
   165             self.clean()
       
   166 
       
   167     def make_temp_table_name(self, table):
       
   168         """
       
   169         return a temp table name according to db backend
       
   170         """
       
   171         return self.syssource.make_temp_table_name(table)
       
   172 
   166 
   173 
   167     def init_temp_table(self, table, selected, sol):
   174     def init_temp_table(self, table, selected, sol):
   168         """initialize sql schema and variable map for a temporary table which
   175         """initialize sql schema and variable map for a temporary table which
   169         will be used to store result for the given rqlst
   176         will be used to store result for the given rqlst
   170         """
   177         """