File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -83,8 +83,7 @@ def udfCheckAndOverwrite(self, udf):
83
83
self .udfToCreate .add (udf )
84
84
85
85
def udfCreateSupportTbl (self , dataType ):
86
- debugMsg = "creating a support table to write commands standard "
87
- debugMsg += "output to"
86
+ debugMsg = "creating a support table for user-defined functions"
88
87
logger .debug (debugMsg )
89
88
90
89
self .createSupportTbl (self .cmdTblName , self .tblField , dataType )
Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ def readFile(self, rFile):
270
270
271
271
fileContent = self .stackedReadFile (rFile )
272
272
273
- if fileContent in ( None , "" ):
273
+ if fileContent in ( None , "" ) and kb . dbms != "PostgreSQL" :
274
274
self .cleanup (onlyFileTbl = True )
275
275
276
276
return
@@ -288,7 +288,8 @@ def readFile(self, rFile):
288
288
fileContent = self .__unhexString (fileContent )
289
289
rFilePath = dataToOutFile (fileContent )
290
290
291
- self .cleanup (onlyFileTbl = True )
291
+ if kb .dbms != "PostgreSQL" :
292
+ self .cleanup (onlyFileTbl = True )
292
293
293
294
return rFilePath
294
295
You can’t perform that action at this time.
0 commit comments