(self)
| 93 | logger.debug("keeping existing UDF '%s' as requested" % udf) |
| 94 | |
| 95 | def uncPathRequest(self): |
| 96 | self.createSupportTbl(self.fileTblName, self.tblField, "text") |
| 97 | inject.goStacked("COPY %s(%s) FROM '%s'" % (self.fileTblName, self.tblField, self.uncPath), silent=True) |
| 98 | self.cleanup(onlyFileTbl=True) |
| 99 | |
| 100 | def copyExecCmd(self, cmd): |
| 101 | output = None |
nothing calls this directly
no test coverage detected