Prepare 1.12
This commit is contained in:
parent
b926225089
commit
132816cffe
6 changed files with 12 additions and 9 deletions
4
Makefile
4
Makefile
|
|
@ -18,8 +18,8 @@ DATA = pg_ivm--1.0.sql \
|
|||
pg_ivm--1.3--1.4.sql pg_ivm--1.4--1.5.sql pg_ivm--1.5--1.6.sql \
|
||||
pg_ivm--1.6--1.7.sql pg_ivm--1.7--1.8.sql pg_ivm--1.8--1.9.sql \
|
||||
pg_ivm--1.9--1.10.sql \
|
||||
pg_ivm--1.10.sql \
|
||||
pg_ivm--1.10--1.11.sql
|
||||
pg_ivm--1.10.sql \
|
||||
pg_ivm--1.10--1.11.sql pg_ivm--1.11--1.12.sql
|
||||
|
||||
REGRESS = pg_ivm create_immv refresh_immv
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
The `pg_ivm` module provides Incremental View Maintenance (IVM) feature for PostgreSQL.
|
||||
|
||||
The extension is compatible with PostgreSQL 13, 14, 15, 16, and 17.
|
||||
The extension is compatible with PostgreSQL 13, 14, 15, 16, 17, and 18.
|
||||
|
||||
## Description
|
||||
|
||||
|
|
|
|||
|
|
@ -60,6 +60,7 @@ install_data(
|
|||
'pg_ivm--1.9--1.10.sql',
|
||||
'pg_ivm--1.10.sql',
|
||||
'pg_ivm--1.10--1.11.sql',
|
||||
'pg_ivm--1.11--1.12.sql',
|
||||
'pg_ivm.control',
|
||||
install_dir: sharedir / 'extension',
|
||||
)
|
||||
|
|
|
|||
0
pg_ivm--1.11--1.12.sql
Normal file
0
pg_ivm--1.11--1.12.sql
Normal file
|
|
@ -1,6 +1,6 @@
|
|||
# incremental view maintenance extension
|
||||
comment = 'incremental view maintenance on PostgreSQL'
|
||||
default_version = '1.11'
|
||||
default_version = '1.12'
|
||||
module_pathname = '$libdir/pg_ivm'
|
||||
relocatable = false
|
||||
schema = pg_catalog
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# How to build RPM:
|
||||
#
|
||||
# rpmbuild -bb pg_ivm.spec --define "pgmajorversion 17" --define "pginstdir /usr/pgsql-17"
|
||||
# rpmbuild -bb pg_ivm.spec --define "pgmajorversion 18" --define "pginstdir /usr/pgsql-18"
|
||||
|
||||
%global sname pg_ivm
|
||||
|
||||
|
|
@ -8,11 +8,11 @@
|
|||
%global llvm 1
|
||||
%endif
|
||||
|
||||
Summary: PostgreSQL-based distributed RDBMS
|
||||
Summary: Incremental View Maintenance (IVM) feature for PostgreSQL.
|
||||
Name: %{sname}_%{pgmajorversion}
|
||||
Version: 1.11
|
||||
Version: 1.12
|
||||
Release: 1%{dist}
|
||||
License: BSD
|
||||
License: PostgreSQL
|
||||
Vendor: IVM Development Group
|
||||
URL: https://github.com/sraoss/%{sname}
|
||||
Source0: https://github.com/sraoss/%{sname}/archive/v%{version}.tar.gz
|
||||
|
|
@ -55,8 +55,10 @@ PATH=%{pginstdir}/bin:$PATH %{__make} %{?_smp_mflags} INSTALL_PREFIX=%{buildroot
|
|||
%endif
|
||||
|
||||
%changelog
|
||||
* Mon Sep 4 2025 - Yugo Nagata <nagata@sraoss.co.jp> 1.12-1
|
||||
- Update to 1.12
|
||||
* Mon May 25 2025 - Yugo Nagata <nagata@sraoss.co.jp> 1.11-1
|
||||
- Update to 1.10
|
||||
- Update to 1.11
|
||||
* Tue Mar 11 2025 - Yugo Nagata <nagata@sraoss.co.jp> 1.10-1
|
||||
- Update to 1.10
|
||||
* Fri Jul 31 2024 - Yugo Nagata <nagata@sraoss.co.jp> 1.9-1
|
||||
|
|
|
|||
Loading…
Reference in a new issue