forked from sraoss/pg_ivm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-- functions | ||
|
||
CREATE FUNCTION create_immv(text, text, boolean default false) | ||
RETURNS bigint | ||
STRICT | ||
AS 'MODULE_PATHNAME', 'create_immv' | ||
LANGUAGE C; | ||
|
||
DROP FUNCTION create_immv(text, text); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# incremental view maintenance extension_ | ||
comment = 'incremental view maintenance on PostgreSQL' | ||
default_version = '1.8' | ||
default_version = '1.9' | ||
module_pathname = '$libdir/pg_ivm' | ||
relocatable = false | ||
schema = pg_catalog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
Summary: PostgreSQL-based distributed RDBMS | ||
Name: %{sname}_%{pgmajorversion} | ||
Version: 1.8 | ||
Version: 1.9 | ||
Release: 1%{dist} | ||
License: BSD | ||
Vendor: IVM Development Group | ||
|
@@ -55,6 +55,8 @@ PATH=%{pginstdir}/bin:$PATH %{__make} %{?_smp_mflags} INSTALL_PREFIX=%{buildroot | |
%endif | ||
|
||
%changelog | ||
* Mon Jul 22 2024 - Jamal Boukaffal <[email protected]> 1.9-1 | ||
- Update to 1.9 | ||
* Fri Mar 1 2024 - Yugo Nagata <[email protected]> 1.8-1 | ||
- Update to 1.8 | ||
* Thu Sep 13 2023 - Yugo Nagata <[email protected]> 1.7-1 | ||
|