Revision 2919
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/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
sql_gen.py: Removed TempFunction because that functionality is now provided by DbConn.TempFunction()