goo blog サービス終了のお知らせ 

dak ブログ

python、rubyなどのプログラミング、MySQL、サーバーの設定などの備忘録。レゴの写真も。

PostgreSQL の extension のバージョン確認

2025-02-18 00:09:14 | PostgreSQL

PostgreSQL で extension のバージョンを確認する方法のメモ。

pg_available_extensions テーブルでバージョンを確認することができます。

# select * from pg_available_extensions;

        name        | default_version | installed_version |                                comment
--------------------+-----------------+-------------------+----------------------------------------------------------------
 pageinspect        | 1.12            |                   | inspect the contents of database pages at a low level
 plpgsql            | 1.0             | 1.0               | PL/pgSQL procedural language
...
 xml2               | 1.1             |                   | XPath querying and XSLT
 vector             | 0.8.0           |                   | vector data type and ivfflat and hnsw access methods
 hstore_plpython3u  | 1.0             |                   | transform between hstore and plpython3u
 jsonb_plpython3u   | 1.0             |                   | transform between jsonb and plpython3u
 plpython3u         | 1.0             |                   | PL/Python3U untrusted procedural language
 textsearch_ja      | 42              | 42                | Integrated Full-Text-Search for Japanese using morphological an
 ltree_plpython3u   | 1.0             |                   | transform between ltree and plpython3u

この記事についてブログを書く
« PostgreSQL で textsearch_ja... | トップ | PostgreSQL で実行中のクエリ... »

PostgreSQL」カテゴリの最新記事