()
| 540 | |
| 541 | @staticmethod |
| 542 | def getVersionList(): |
| 543 | versions = filterNone(flattenValue(kb.dbmsVersion)) if not isinstance(kb.dbmsVersion, six.string_types) else [kb.dbmsVersion] |
| 544 | if not isNoneValue(versions): |
| 545 | return versions |
| 546 | else: |
| 547 | return None |
| 548 | |
| 549 | @staticmethod |
| 550 | def getOs(): |
no test coverage detected