File tree 8 files changed +16
-7
lines changed
8 files changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ matrix:
10
10
- env : PGVERSION=10
11
11
- env : PGVERSION=11
12
12
before_install :
13
- - git clone -b v0.7.5 --depth 1 https://github.com/citusdata/tools.git
13
+ - git clone -b v0.7.9 --depth 1 https://github.com/citusdata/tools.git
14
14
- sudo make -C tools install
15
15
- setup_apt
16
16
- nuke_pg
Original file line number Diff line number Diff line change
1
+ 2018-11-03
2
+ ==========
3
+ v2.12 - More updates for PostgreSQL 11 and fixes
4
+
1
5
2018-08-25
2
6
==========
3
7
v2.11 - Updated for PostgreSQL 11
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
EXTENSION = hll
15
- EXTVERSIONS = 2.10 2.11
15
+ EXTVERSIONS = 2.10 2.11 2.12
16
16
17
17
DATA_built = $(foreach v,$(EXTVERSIONS ) ,$(EXTENSION ) --$(v ) .sql)
18
18
DATA = $(wildcard $(EXTENSION ) --* --* .sql)
@@ -34,3 +34,5 @@ $(EXTENSION)--2.10.sql: $(EXTENSION).sql
34
34
cat $^ > $@
35
35
$(EXTENSION ) --2.11.sql : $(EXTENSION ) --2.10.sql $(EXTENSION ) --2.10--2.11.sql
36
36
cat $^ > $@
37
+ $(EXTENSION ) --2.12.sql : $(EXTENSION ) --2.11.sql $(EXTENSION ) --2.11--2.12.sql
38
+ cat $^ > $@
Original file line number Diff line number Diff line change @@ -376,7 +376,7 @@ Build
376
376
377
377
Specify versions:
378
378
379
- export VER=2.11
379
+ export VER=2.12
380
380
export PGSHRT=11
381
381
382
382
Make sure ` Makefile ` points to the correct ` pg_config ` for the specified version, since ` rpmbuild ` doesn't respect env variables:
@@ -394,11 +394,11 @@ Execute rpmbuild:
394
394
395
395
Install RPM:
396
396
397
- rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-2.11 .x86_64.rpm
397
+ rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-2.12 .x86_64.rpm
398
398
399
399
And if you want the debugging build:
400
400
401
- rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-debuginfo-2.11 .x86_64.rpm
401
+ rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-debuginfo-2.12 .x86_64.rpm
402
402
403
403
404
404
## From source ##
@@ -439,7 +439,7 @@ And then just verify it's there:
439
439
List of installed extensions
440
440
Name | Version | Schema | Description
441
441
---------+---------+------------+-----------------------------------
442
- hll | 2.11 | public | type for storing hyperloglog data
442
+ hll | 2.12 | public | type for storing hyperloglog data
443
443
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
444
444
(2 rows)
445
445
Original file line number Diff line number Diff line change 1
1
CREATE EXTENSION hll VERSION '2.10';
2
2
ALTER EXTENSION hll UPDATE TO '2.11';
3
+ ALTER EXTENSION hll UPDATE TO '2.12';
Original file line number Diff line number Diff line change
1
+ -- Empty upgrade file to upgrade extension from 2.11 to 2.12
Original file line number Diff line number Diff line change 14
14
15
15
# hll extension
16
16
comment = 'type for storing hyperloglog data'
17
- default_version = '2.11 '
17
+ default_version = '2.12 '
18
18
module_pathname = '$libdir/hll'
Original file line number Diff line number Diff line change 1
1
CREATE EXTENSION hll VERSION ' 2.10' ;
2
2
ALTER EXTENSION hll UPDATE TO ' 2.11' ;
3
+ ALTER EXTENSION hll UPDATE TO ' 2.12' ;
You can’t perform that action at this time.
0 commit comments