Project

General

Profile

« Previous | Next » 

Revision 2919

sql_gen.py: Removed TempFunction because that functionality is now provided by DbConn.TempFunction()

View differences:

sql_gen.py
308 308
Function = Table
309 309
as_Function = as_Table
310 310

  
311
def TempFunction(name, debug_temp):
312
    schema = None
313
    if not debug_temp: schema = 'pg_temp'
314
    return Function(name, schema)
315

  
316 311
class InternalFunction(CustomCode): pass
317 312

  
318 313
class FunctionCall(Code):

Also available in: Unified diff