Skip to content

Commit aef6d28

Browse files
authored
Merge branch 'reorg:master' into soft-delete-support
2 parents 89dfa96 + 7da5302 commit aef6d28

40 files changed

+1083
-448
lines changed

.github/workflows/regression.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ jobs:
77
fail-fast: false
88
matrix:
99
pg:
10+
- 16
1011
- 15
1112
- 14
1213
- 13
1314
- 12
1415
- 11
1516
- 10
17+
- 9.6
18+
- 9.5
1619

1720
name: PostgreSQL ${{ matrix.pg }}
1821
runs-on: ubuntu-latest
@@ -31,11 +34,8 @@ jobs:
3134
- name: Put pg_repack on PATH
3235
run: echo "$PWD/bin" >> $GITHUB_PATH
3336

34-
- name: Create testts directory
35-
run: sudo -u postgres mkdir /tmp/testts
36-
37-
- name: Create testts tablespace
38-
run: sudo -u postgres psql -c "CREATE TABLESPACE testts LOCATION '/tmp/testts'"
37+
- name: Create tablespaces
38+
run: bash regress/create_tablespaces.sh
3939

4040
- name: Test on PostgreSQL ${{ matrix.pg }}
4141
run: pg-build-test

.travis.yml

-27
This file was deleted.

META.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,22 @@
22
"name": "pg_repack",
33
"abstract": "PostgreSQL module for data reorganization",
44
"description": "Reorganize tables in PostgreSQL databases with minimal locks",
5-
"version": "1.4.8",
5+
"version": "1.5.1",
66
"maintainer": [
77
"Beena Emerson <[email protected]>",
88
"Josh Kupershmidt <[email protected]>",
99
"Masahiko Sawada <[email protected]>",
10-
"Daniele Varrazzo <[email protected]>"
10+
"Daniele Varrazzo <[email protected]>",
11+
"Artur Zakirov <[email protected]>",
12+
"Andreas Scherbaum <[email protected]>"
1113
],
1214
"tags": [ "bloat", "maintenance", "vacuum", "cluster" ],
1315
"release_status": "stable",
1416
"license": "bsd",
1517
"provides": {
1618
"pg_repack": {
1719
"file": "lib/pg_repack.sql",
18-
"version": "1.4.8",
20+
"version": "1.5.1",
1921
"abstract": "Reorganize tables in PostgreSQL databases with minimal locks"
2022
}
2123
},

README.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ pg_repack -- Reorganize tables in PostgreSQL databases with minimal locks
66
- Development: https://github.com/reorg/pg_repack
77
- Bug Report: https://github.com/reorg/pg_repack/issues
88

9-
|travis|
9+
|GitHub Actions|
1010

11-
.. |travis| image:: https://travis-ci.org/reorg/pg_repack.svg?branch=master
12-
:target: https://travis-ci.org/reorg/pg_repack
13-
:alt: Linux and OSX build status
11+
.. |GitHub Actions| image:: https://github.com/reorg/pg_repack/actions/workflows/regression.yml/badge.svg
12+
:target: https://github.com/reorg/pg_repack/actions/workflows/regression.yml
13+
:alt: Linux build status
1414

1515
pg_repack_ is a PostgreSQL extension which lets you remove bloat from
1616
tables and indexes, and optionally restore the physical order of clustered

SPECS/pg_repack84.spec

-62
This file was deleted.

SPECS/pg_repack90.spec

-67
This file was deleted.

0 commit comments

Comments
 (0)