server/querier.py
changeset 5177 395e1ff018ae
parent 5176 ddd5219d7eef
parent 5168 1ab032df5ca3
child 5423 e15abfdcce38
equal deleted inserted replaced
5176:ddd5219d7eef 5177:395e1ff018ae
   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         """