Get a very informative version string from Postgres Includes minor version, major version, and architecture, among other details.
(cls)
| 154 | |
| 155 | @classmethod |
| 156 | def pg_version(cls): |
| 157 | """ |
| 158 | Get a very informative version string from Postgres |
| 159 | |
| 160 | Includes minor version, major version, and architecture, among |
| 161 | other details. |
| 162 | |
| 163 | """ |
| 164 | return cls._dict_transform(psql_csv_run('SELECT * FROM version()')) |
no test coverage detected