Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
ccbe0c14
Commit
ccbe0c14
authored
Jul 03, 2010
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CVS tags to pg_upgrade and pg_upgrade_support files, per request
from Tom.
parent
b3b7d603
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
42 additions
and
0 deletions
+42
-0
contrib/pg_upgrade/IMPLEMENTATION
contrib/pg_upgrade/IMPLEMENTATION
+2
-0
contrib/pg_upgrade/Makefile
contrib/pg_upgrade/Makefile
+1
-0
contrib/pg_upgrade/TESTING
contrib/pg_upgrade/TESTING
+2
-0
contrib/pg_upgrade/check.c
contrib/pg_upgrade/check.c
+2
-0
contrib/pg_upgrade/controldata.c
contrib/pg_upgrade/controldata.c
+2
-0
contrib/pg_upgrade/dump.c
contrib/pg_upgrade/dump.c
+2
-0
contrib/pg_upgrade/exec.c
contrib/pg_upgrade/exec.c
+2
-0
contrib/pg_upgrade/file.c
contrib/pg_upgrade/file.c
+2
-0
contrib/pg_upgrade/function.c
contrib/pg_upgrade/function.c
+2
-0
contrib/pg_upgrade/info.c
contrib/pg_upgrade/info.c
+2
-0
contrib/pg_upgrade/option.c
contrib/pg_upgrade/option.c
+2
-0
contrib/pg_upgrade/page.c
contrib/pg_upgrade/page.c
+2
-0
contrib/pg_upgrade/pg_upgrade.c
contrib/pg_upgrade/pg_upgrade.c
+2
-0
contrib/pg_upgrade/pg_upgrade.h
contrib/pg_upgrade/pg_upgrade.h
+2
-0
contrib/pg_upgrade/relfilenode.c
contrib/pg_upgrade/relfilenode.c
+2
-0
contrib/pg_upgrade/server.c
contrib/pg_upgrade/server.c
+2
-0
contrib/pg_upgrade/tablespace.c
contrib/pg_upgrade/tablespace.c
+2
-0
contrib/pg_upgrade/util.c
contrib/pg_upgrade/util.c
+2
-0
contrib/pg_upgrade/version.c
contrib/pg_upgrade/version.c
+2
-0
contrib/pg_upgrade/version_old_8_3.c
contrib/pg_upgrade/version_old_8_3.c
+2
-0
contrib/pg_upgrade_support/Makefile
contrib/pg_upgrade_support/Makefile
+1
-0
contrib/pg_upgrade_support/pg_upgrade_support.c
contrib/pg_upgrade_support/pg_upgrade_support.c
+2
-0
No files found.
contrib/pg_upgrade/IMPLEMENTATION
View file @
ccbe0c14
$PostgreSQL: pgsql/contrib/pg_upgrade/IMPLEMENTATION,v 1.3 2010/07/03 14:23:13 momjian Exp $
------------------------------------------------------------------------------
PG_UPGRADE: IN-PLACE UPGRADES FOR POSTGRESQL
------------------------------------------------------------------------------
...
...
contrib/pg_upgrade/Makefile
View file @
ccbe0c14
#
# Makefile for pg_upgrade
#
# $PostgreSQL: pgsql/contrib/pg_upgrade/Makefile,v 1.4 2010/07/03 14:23:13 momjian Exp $
PGFILEDESC
=
"pg_upgrade - an in-place binary upgrade utility"
PGAPPICON
=
win32
...
...
contrib/pg_upgrade/TESTING
View file @
ccbe0c14
$PostgreSQL: pgsql/contrib/pg_upgrade/TESTING,v 1.2 2010/07/03 14:23:13 momjian Exp $
The most effective way to test pg_upgrade, aside from testing on user
data, is by upgrading the PostgreSQL regression database.
...
...
contrib/pg_upgrade/check.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* check.c
*
* server checks and output routines
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/check.c,v 1.8 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/controldata.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* controldata.c
*
* controldata functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/controldata.c,v 1.6 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/dump.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* dump.c
*
* dump functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/dump.c,v 1.4 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/exec.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* exec.c
*
* execution functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/exec.c,v 1.5 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/file.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* file.c
*
* file system operations
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/file.c,v 1.10 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/function.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* function.c
*
* server-side function support
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/function.c,v 1.4 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/info.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* info.c
*
* information support functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/info.c,v 1.8 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/option.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* opt.c
*
* options functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/option.c,v 1.9 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/page.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* page.c
*
* per-page conversion operations
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/page.c,v 1.3 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/pg_upgrade.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* pg_upgrade.c
*
* main source file
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.c,v 1.7 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/pg_upgrade.h
View file @
ccbe0c14
/*
* pg_upgrade.h
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.h,v 1.12 2010/07/03 14:23:13 momjian Exp $
*/
#include "postgres.h"
...
...
contrib/pg_upgrade/relfilenode.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* relfilenode.c
*
* relfilenode functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/relfilenode.c,v 1.5 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/server.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* server.c
*
* database server functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/server.c,v 1.5 2010/07/03 14:23:13 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/tablespace.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* tablespace.c
*
* tablespace functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/tablespace.c,v 1.3 2010/07/03 14:23:14 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/util.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* util.c
*
* utility functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/util.c,v 1.2 2010/07/03 14:23:14 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/version.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* version.c
*
* Postgres-version-specific routines
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/version.c,v 1.3 2010/07/03 14:23:14 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade/version_old_8_3.c
View file @
ccbe0c14
...
...
@@ -2,6 +2,8 @@
* version.c
*
* Postgres-version-specific routines
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/version_old_8_3.c,v 1.4 2010/07/03 14:23:14 momjian Exp $
*/
#include "pg_upgrade.h"
...
...
contrib/pg_upgrade_support/Makefile
View file @
ccbe0c14
#
# Makefile for pg_upgrade_support
#
# $PostgreSQL: pgsql/contrib/pg_upgrade_support/Makefile,v 1.3 2010/07/03 14:23:14 momjian Exp $
PGFILEDESC
=
"pg_upgrade_support - server-side functions for pg_upgrade"
...
...
contrib/pg_upgrade_support/pg_upgrade_support.c
View file @
ccbe0c14
...
...
@@ -3,6 +3,8 @@
*
* server-side functions to set backend global variables
* to control oid and relfilenode assignment
*
* $PostgreSQL: pgsql/contrib/pg_upgrade_support/pg_upgrade_support.c,v 1.2 2010/07/03 14:23:14 momjian Exp $
*/
#include "postgres.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment