pgr_full_version¶
pgr_full_version
— Get the details of pgRouting version information.
Availability
- Version 3.0.0
- New official function
Support
- Supported versions: current(3.0)
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.0.0-rc1 | Debug | 2019/11/26 | pgrouting-3.0 | Linux-4.15.0-70-generic | PostgreSQL 9.5.19 | GNU-8.3.0 | 1.65.1 | 9a6b8b015
(1 row)
Result Columns¶
Column | Type | Description |
---|---|---|
version | TEXT |
pgRouting version |
build_type | TEXT |
The Build type |
compile_date | TEXT |
Compilation date |
library | TEXT |
Library name and version |
system | TEXT |
Operative system |
postgreSQL | TEXT |
pgsql used |
compiler | TEXT |
Compiler and version |
boost | TEXT |
Boost version |
hash | TEXT |
Git hash of pgRouting build |