Skip to content

Commit 155b2f5

Browse files
committed
fix logerrors extension
1 parent eaba60a commit 155b2f5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The PostgreSQL 13 image is now missing the following extensions (they will be ad
7777
| intarray | 1.2 | functions, operators, and index support for 1-D arrays of integers |
7878
| isn | 1.2 | data types for international product numbering standards |
7979
| lo | 1.1 | Large Object maintenance |
80-
| logerrors | 1.1 | Function for collecting statistics about messages in logfile
80+
| logerrors | 2.0 | Function for collecting statistics about messages in logfile
8181
| ltree | 1.1 | data type for hierarchical tree-like structures |
8282
| moddatetime | 1.0 | functions for tracking last modification time |
8383
| pageinspect | 1.7 | inspect the contents of database pages at a low level |

extended-postgres/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ RUN apt-get clean && rm -rf /var/lib/apt/lists/partial \
9393
&& cd set_user && make USE_PGXS=1 && make USE_PGXS=1 install \
9494
# errorlogs extension
9595
&& if [ $(echo "$PG_SERVER_VERSION > 9.6" | /usr/bin/bc) = "1" ]; then \
96-
cd /tmp && wget https://github.com/munakoiso/logerrors/archive/v1.1.tar.gz \
97-
&& tar -xf v1.1.tar.gz && rm v1.1.tar.gz && cd logerrors-1.1 \
96+
cd /tmp && wget https://github.com/munakoiso/logerrors/archive/v2.0.tar.gz \
97+
&& tar -xf v2.0.tar.gz && rm v2.0.tar.gz && cd logerrors-2.0 \
9898
&& USE_PGXS=1 make && USE_PGXS=1 make install; \
9999
fi \
100100
# WAL-G

0 commit comments

Comments
 (0)