forked from arkhipov/temporal_tables
-
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
10 changed files
with
15 additions
and
11 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Copyright (c) 2012-2016, Vladislav Arkhipov <[email protected]> | ||
Copyright (c) 2012-2017, Vladislav Arkhipov <[email protected]> | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "temporal_tables", | ||
"abstract": "Temporal Tables Extension", | ||
"description": "This extension provides support for temporal tables. System-period data versioning (also known as transaction time or system time) allows you to specify that old rows are archived into another table (that is called the history table).", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"release_status": "stable", | ||
"maintainer": [ | ||
"Vladislav Arkhipov <[email protected]>" | ||
|
@@ -11,9 +11,9 @@ | |
"provides": { | ||
"temporal_tables": { | ||
"abstract": "Temporal Tables Extension", | ||
"file": "temporal_tables--1.1.0.sql", | ||
"file": "temporal_tables--1.1.1.sql", | ||
"docfile": "README.md", | ||
"version": "1.1.0" | ||
"version": "1.1.1" | ||
} | ||
}, | ||
"prereqs": { | ||
|
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
Empty file.
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* | ||
* temporal_tables.c | ||
* | ||
* Copyright (c) 2012-2016 Vladislav Arkhipov <[email protected]> | ||
* Copyright (c) 2012-2017 Vladislav Arkhipov <[email protected]> | ||
* | ||
* ------------------------------------------------------------------------- | ||
*/ | ||
|
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,5 +1,5 @@ | ||
# versioning extension | ||
comment = 'temporal tables' | ||
default_version = '1.1.0' | ||
default_version = '1.1.1' | ||
module_pathname = '$libdir/temporal_tables' | ||
relocatable = true |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* | ||
* temporal_tables.h | ||
* | ||
* Copyright (c) 2012-2016 Vladislav Arkhipov <[email protected]> | ||
* Copyright (c) 2012-2017 Vladislav Arkhipov <[email protected]> | ||
* | ||
* ------------------------------------------------------------------------- | ||
*/ | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* | ||
* versioning.c | ||
* | ||
* Copyright (c) 2012-2016 Vladislav Arkhipov <[email protected]> | ||
* Copyright (c) 2012-2017 Vladislav Arkhipov <[email protected]> | ||
* | ||
* ------------------------------------------------------------------------- | ||
*/ | ||
|