Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitccbe0c1

Browse files
committed
Add CVS tags to pg_upgrade and pg_upgrade_support files, per request
from Tom.
1 parentb3b7d60 commitccbe0c1

22 files changed

+42
-0
lines changed

‎contrib/pg_upgrade/IMPLEMENTATION

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
$PostgreSQL: pgsql/contrib/pg_upgrade/IMPLEMENTATION,v 1.3 2010/07/03 14:23:13 momjian Exp $
2+
13
------------------------------------------------------------------------------
24
PG_UPGRADE: IN-PLACE UPGRADES FOR POSTGRESQL
35
------------------------------------------------------------------------------

‎contrib/pg_upgrade/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#
22
# Makefile for pg_upgrade
33
#
4+
# $PostgreSQL: pgsql/contrib/pg_upgrade/Makefile,v 1.4 2010/07/03 14:23:13 momjian Exp $
45

56
PGFILEDESC = "pg_upgrade - an in-place binary upgrade utility"
67
PGAPPICON = win32

‎contrib/pg_upgrade/TESTING

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
$PostgreSQL: pgsql/contrib/pg_upgrade/TESTING,v 1.2 2010/07/03 14:23:13 momjian Exp $
2+
13
The most effective way to test pg_upgrade, aside from testing on user
24
data, is by upgrading the PostgreSQL regression database.
35

‎contrib/pg_upgrade/check.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*check.c
33
*
44
*server checks and output routines
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/check.c,v 1.8 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/controldata.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*controldata.c
33
*
44
*controldata functions
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/controldata.c,v 1.6 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/dump.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*dump.c
33
*
44
*dump functions
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/dump.c,v 1.4 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/exec.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*exec.c
33
*
44
*execution functions
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/exec.c,v 1.5 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/file.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*file.c
33
*
44
*file system operations
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/file.c,v 1.10 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/function.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*function.c
33
*
44
*server-side function support
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/function.c,v 1.4 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/info.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*info.c
33
*
44
*information support functions
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/info.c,v 1.8 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/option.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*opt.c
33
*
44
*options functions
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/option.c,v 1.9 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/page.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*page.c
33
*
44
*per-page conversion operations
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/page.c,v 1.3 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/pg_upgrade.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*pg_upgrade.c
33
*
44
*main source file
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.c,v 1.7 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/pg_upgrade.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/*
22
*pg_upgrade.h
3+
*
4+
*$PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.h,v 1.12 2010/07/03 14:23:13 momjian Exp $
35
*/
46

57
#include"postgres.h"

‎contrib/pg_upgrade/relfilenode.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*relfilenode.c
33
*
44
*relfilenode functions
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/relfilenode.c,v 1.5 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/server.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*server.c
33
*
44
*database server functions
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/server.c,v 1.5 2010/07/03 14:23:13 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/tablespace.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*tablespace.c
33
*
44
*tablespace functions
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/tablespace.c,v 1.3 2010/07/03 14:23:14 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/util.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*util.c
33
*
44
*utility functions
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/util.c,v 1.2 2010/07/03 14:23:14 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*version.c
33
*
44
*Postgres-version-specific routines
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/version.c,v 1.3 2010/07/03 14:23:14 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade/version_old_8_3.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*version.c
33
*
44
*Postgres-version-specific routines
5+
*
6+
*$PostgreSQL: pgsql/contrib/pg_upgrade/version_old_8_3.c,v 1.4 2010/07/03 14:23:14 momjian Exp $
57
*/
68

79
#include"pg_upgrade.h"

‎contrib/pg_upgrade_support/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#
22
# Makefile for pg_upgrade_support
33
#
4+
# $PostgreSQL: pgsql/contrib/pg_upgrade_support/Makefile,v 1.3 2010/07/03 14:23:14 momjian Exp $
45

56
PGFILEDESC = "pg_upgrade_support - server-side functions for pg_upgrade"
67

‎contrib/pg_upgrade_support/pg_upgrade_support.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
*
44
*server-side functions to set backend global variables
55
*to control oid and relfilenode assignment
6+
*
7+
*$PostgreSQL: pgsql/contrib/pg_upgrade_support/pg_upgrade_support.c,v 1.2 2010/07/03 14:23:14 momjian Exp $
68
*/
79

810
#include"postgres.h"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp