File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ The PostgreSQL 14 image is now missing the following extensions (they will be ad
9393| pg_repack | 1.4.5 | Reorganize tables in PostgreSQL databases with minimal locks |
9494| pg_show_plans | 1.0 | show query plans of all currently running SQL statements |
9595| pg_stat_kcache | 2.1.3 | Kernel statistics gathering |
96+ | pg_wait_sampling | 1.1.3 | sampling based statistics of wait events |
9697| pg_stat_statements | 1.6 | track execution statistics of all SQL statements executed |
9798| pg_trgm | 1.4 | text similarity measurement and index searching based on trigrams |
9899| pg_visibility | 1.2 | examine the visibility map (VM) and page-level visibility info |
Original file line number Diff line number Diff line change @@ -85,6 +85,8 @@ RUN apt-get clean && rm -rf /var/lib/apt/lists/partial \
8585 && pgxn install ddlx && pgxn install postgresql_anonymizer \
8686 # pg_stat_kcache extension
8787 && apt-get install postgresql-${PG_SERVER_VERSION}-pg-stat-kcache \
88+ # pg_wait_sampling extension
89+ && apt-get install postgresql-${PG_SERVER_VERSION}-pg-wait-sampling \
8890 # add pg_qualstats extension
8991 && apt-get install postgresql-${PG_SERVER_VERSION}-pg-qualstats \
9092 && if [ $(echo "$PG_SERVER_VERSION < 12" | /usr/bin/bc) = "1" ]; then \
You can’t perform that action at this time.
0 commit comments