pgRouting Manual (2.0.0)

pgr_version

«  pgr_quote_ident   ::   Contents   ::   pgr_versionless  »


Supported versions: latest (3.8) 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 main dev
Unsupported versions:2.6 2.5 2.4 2.3 2.2 2.1 2.0

pgr_version

Name

pgr_version — Query for pgRouting version information.

Synopsis

Returns a table with pgRouting version information.

table() pgr_version();

Description

Returns a table with:

version:varchar pgRouting version
tag:varchar Git tag of pgRouting build
hash:varchar Git hash of pgRouting build
branch:varchar Git branch of pgRouting build
boost:varchar Boost version

History

  • New in version 2.0.0

Examples

  • Query for full version string
SELECT pgr_version();

                     pgr_version
------------------------------------------------------
 (2.0.0-dev,v2.0dev,290,c64bcb9,sew-devel-2_0,1.49.0)
(1 row)
  • Query for version and boost attribute
SELECT version, boost FROM pgr_version();

  version  | boost
-----------+--------
 2.0.0-dev | 1.49.0
(1 row)

See Also

«  pgr_quote_ident   ::   Contents   ::   pgr_versionless  »