pgr_full_version¶
pgr_full_version
— Get the details of pgRouting version information.
Availability
Version 3.0.0
New official function
Description¶
Get the details of pgRouting version information
Signatures¶
pgr_full_version()
RETURNS RECORD OF (version, build_type, compile_date, library, system, PostgreSQL, compiler, boost, hash)
- Example
Information when this documentation was build
SELECT * FROM pgr_full_version();
version | build_type | compile_date | library | system | postgresql | compiler | boost | hash
---------+------------+--------------+-----------------+------------------------+------------------------------------------------+-----------+--------+------------
3.2.0 | Debug | 2021/05/24 | pgrouting-3.2.0 | Linux-5.4.0-72-generic | PostgreSQL 12.6 (Ubuntu 12.6-0ubuntu0.20.04.1) | GNU-8.4.0 | 1.71.0 | 3e0a07c7f9
(1 row)
Result Columns¶
Column |
Type |
Description |
---|---|---|
version |
|
pgRouting version |
build_type |
|
The Build type |
compile_date |
|
Compilation date |
library |
|
Library name and version |
system |
|
Operative system |
postgreSQL |
|
pgsql used |
compiler |
|
Compiler and version |
boost |
|
Boost version |
hash |
|
Git hash of pgRouting build |