Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 75f54fc

Browse files
author
Vladimir Ershov
committed
Merge branch 'PGPROEE10' into PGPROEE10_scheduler
2 parents 5b404fa + c05f6be commit 75f54fc

File tree

363 files changed

+53587
-1052
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

363 files changed

+53587
-1052
lines changed

.dockerignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*/*/.git
2+
.git
3+
.vscode
4+
*.yml
5+
*/*/*.yml
6+
Dockerfile
7+

Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
FROM alpine:3.4
2+
3+
RUN apk add --update gcc libc-dev bison flex readline-dev zlib-dev perl make diffutils gdb iproute2 musl-dbg
4+
5+
# there is already accidental postgres user in alpine
6+
# RUN addgroup pg && adduser -h /pg -D -G pg pg
7+
RUN mkdir /pg && chown postgres:postgres pg
8+
9+
ENV LANG en_US.utf8
10+
ENV CFLAGS -O0
11+
ENV PATH /pg/install/bin:$PATH
12+
13+
COPY ./ /pg/src
14+
15+
# crutch to allow regression test to write there
16+
RUN mkdir -p /pg/src/src/test/regress/results && \
17+
chown postgres:postgres /pg/src/src/test/regress/results
18+
19+
RUN cd /pg/src && \
20+
./configure --enable-cassert --enable-debug --prefix=/pg/install && \
21+
make -j 4 install
22+

contrib/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ SUBDIRS = \
3737
jsquery \
3838
lo \
3939
ltree \
40+
mmts \
4041
oid2name \
4142
online_analyze \
4243
pageinspect \
@@ -48,6 +49,7 @@ SUBDIRS = \
4849
pg_pathman \
4950
pg_prewarm \
5051
pg_query_state \
52+
pg_shardman \
5153
pg_standby \
5254
pg_stat_statements \
5355
pg_transfer \

contrib/mmts/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
tests/node*
2+
tmp_check

0 commit comments

Comments
 (0)