version

In [ ]:
version(condition: list = [])

Returns the version of Vertica.

Parameters

Name Type Optional Description
condition
list
✓
List of the minimal version information. If the current version is not greater or equal to this one, it will raise an error.

Returns

list : List containing the version information [MAJOR, MINOR, PATCH, POST]

Example

In [53]:
from verticapy.utilities import *
version()
Out[53]:
[10, 0, 0, 0]