rent
ReferenceCommand line

rent extension status

rent extension status inspects the connected PostgreSQL catalog. It reports each installed extension, its version and schema, and how many catalog objects belong to it.

Inspect installed extensions

rent extension status
PostgreSQL extensions

Extension                 Version       Schema            Objects
plpgsql                   1.0           pg_catalog        1
vector                    0.8.1         public            9
pgmq                      1.5.1         pgmq              18

Use this when diagnosing an environment, verifying an extension migration, or comparing staging with production.

Capture the complete catalog record

rent extension status --format json
{
  "extensions": [
    {
      "name": "vector",
      "version": "0.8.1",
      "schema": "public",
      "comment": "vector data type and ivfflat and hnsw access methods",
      "dependencies": []
    }
  ],
  "owned_objects": [
    {
      "extension": "vector",
      "object_type": "type",
      "schema": "public",
      "name": "vector",
      "identity": "public.vector"
    }
  ]
}

JSON output includes every owned object with its category, schema, name, and canonical identity, which is useful for reproducible diagnostics and environment comparison.

On this page