(versionList)
| 585 | |
| 586 | @staticmethod |
| 587 | def isVersionWithin(versionList): |
| 588 | if Backend.getVersionList() is None: |
| 589 | return False |
| 590 | |
| 591 | for _ in Backend.getVersionList(): |
| 592 | if _ != UNKNOWN_DBMS_VERSION and _ in versionList: |
| 593 | return True |
| 594 | |
| 595 | return False |
| 596 | |
| 597 | @staticmethod |
| 598 | def isVersionGreaterOrEqualThan(version): |
no test coverage detected