Skip to content

Commit 78f02ca

Browse files
committed
Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.
Per complaint from Tom Lane.
1 parent 2d013c4 commit 78f02ca

File tree

34 files changed

+74
-74
lines changed

34 files changed

+74
-74
lines changed

src/backend/access/heap/heapam.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.252 2008/03/26 16:20:46 alvherre Exp $
11+
* $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.253 2008/03/26 18:48:58 alvherre Exp $
1212
*
1313
*
1414
* INTERFACE ROUTINES
@@ -56,7 +56,7 @@
5656
#include "utils/inval.h"
5757
#include "utils/lsyscache.h"
5858
#include "utils/relcache.h"
59-
#include "utils/snapmgmt.h"
59+
#include "utils/snapmgr.h"
6060
#include "utils/syscache.h"
6161

6262

src/backend/access/index/indexam.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/access/index/indexam.c,v 1.102 2008/03/26 16:20:46 alvherre Exp $
11+
* $PostgreSQL: pgsql/src/backend/access/index/indexam.c,v 1.103 2008/03/26 18:48:59 alvherre Exp $
1212
*
1313
* INTERFACE ROUTINES
1414
* index_open - open an index relation by relation OID
@@ -67,7 +67,7 @@
6767
#include "access/transam.h"
6868
#include "pgstat.h"
6969
#include "utils/relcache.h"
70-
#include "utils/snapmgmt.h"
70+
#include "utils/snapmgr.h"
7171

7272

7373
/* ----------------------------------------------------------------

src/backend/access/nbtree/nbtpage.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $PostgreSQL: pgsql/src/backend/access/nbtree/nbtpage.c,v 1.107 2008/03/26 16:20:46 alvherre Exp $
12+
* $PostgreSQL: pgsql/src/backend/access/nbtree/nbtpage.c,v 1.108 2008/03/26 18:48:59 alvherre Exp $
1313
*
1414
* NOTES
1515
* Postgres btree pages look like ordinary relation pages. The opaque
@@ -28,7 +28,7 @@
2828
#include "storage/freespace.h"
2929
#include "storage/lmgr.h"
3030
#include "utils/inval.h"
31-
#include "utils/snapmgmt.h"
31+
#include "utils/snapmgr.h"
3232

3333

3434
/*

src/backend/access/transam/subtrans.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
2323
* Portions Copyright (c) 1994, Regents of the University of California
2424
*
25-
* $PostgreSQL: pgsql/src/backend/access/transam/subtrans.c,v 1.21 2008/03/26 16:20:46 alvherre Exp $
25+
* $PostgreSQL: pgsql/src/backend/access/transam/subtrans.c,v 1.22 2008/03/26 18:48:59 alvherre Exp $
2626
*
2727
*-------------------------------------------------------------------------
2828
*/
@@ -31,7 +31,7 @@
3131
#include "access/slru.h"
3232
#include "access/subtrans.h"
3333
#include "access/transam.h"
34-
#include "utils/snapmgmt.h"
34+
#include "utils/snapmgr.h"
3535

3636

3737
/*

src/backend/access/transam/transam.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/access/transam/transam.c,v 1.75 2008/03/26 16:20:46 alvherre Exp $
11+
* $PostgreSQL: pgsql/src/backend/access/transam/transam.c,v 1.76 2008/03/26 18:48:59 alvherre Exp $
1212
*
1313
* NOTES
1414
* This file contains the high level access-method interface to the
@@ -22,7 +22,7 @@
2222
#include "access/clog.h"
2323
#include "access/subtrans.h"
2424
#include "access/transam.h"
25-
#include "utils/snapmgmt.h"
25+
#include "utils/snapmgr.h"
2626

2727

2828
/*

src/backend/access/transam/xact.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.261 2008/03/26 16:20:46 alvherre Exp $
13+
* $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.262 2008/03/26 18:48:59 alvherre Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -45,7 +45,7 @@
4545
#include "utils/inval.h"
4646
#include "utils/memutils.h"
4747
#include "utils/relcache.h"
48-
#include "utils/snapmgmt.h"
48+
#include "utils/snapmgr.h"
4949
#include "utils/xml.h"
5050
#include "pg_trace.h"
5151

src/backend/catalog/heap.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.329 2008/03/26 16:20:46 alvherre Exp $
11+
* $PostgreSQL: pgsql/src/backend/catalog/heap.c,v 1.330 2008/03/26 18:48:59 alvherre Exp $
1212
*
1313
*
1414
* INTERFACE ROUTINES
@@ -60,7 +60,7 @@
6060
#include "utils/lsyscache.h"
6161
#include "utils/relcache.h"
6262
#include "utils/syscache.h"
63-
#include "utils/snapmgmt.h"
63+
#include "utils/snapmgr.h"
6464

6565

6666
static void AddNewRelationTuple(Relation pg_class_desc,

src/backend/catalog/index.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/catalog/index.c,v 1.294 2008/03/26 16:20:46 alvherre Exp $
11+
* $PostgreSQL: pgsql/src/backend/catalog/index.c,v 1.295 2008/03/26 18:48:59 alvherre Exp $
1212
*
1313
*
1414
* INTERFACE ROUTINES
@@ -55,7 +55,7 @@
5555
#include "utils/relcache.h"
5656
#include "utils/syscache.h"
5757
#include "utils/tuplesort.h"
58-
#include "utils/snapmgmt.h"
58+
#include "utils/snapmgr.h"
5959

6060

6161
/* state info for validate_index bulkdelete callback */

src/backend/commands/cluster.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
*
1313
* IDENTIFICATION
14-
* $PostgreSQL: pgsql/src/backend/commands/cluster.c,v 1.170 2008/03/26 16:20:46 alvherre Exp $
14+
* $PostgreSQL: pgsql/src/backend/commands/cluster.c,v 1.171 2008/03/26 18:48:59 alvherre Exp $
1515
*
1616
*-------------------------------------------------------------------------
1717
*/
@@ -41,7 +41,7 @@
4141
#include "utils/lsyscache.h"
4242
#include "utils/memutils.h"
4343
#include "utils/relcache.h"
44-
#include "utils/snapmgmt.h"
44+
#include "utils/snapmgr.h"
4545
#include "utils/syscache.h"
4646

4747

src/backend/commands/copy.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.297 2008/03/26 16:20:46 alvherre Exp $
11+
* $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.298 2008/03/26 18:48:59 alvherre Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -40,7 +40,7 @@
4040
#include "utils/builtins.h"
4141
#include "utils/lsyscache.h"
4242
#include "utils/memutils.h"
43-
#include "utils/snapmgmt.h"
43+
#include "utils/snapmgr.h"
4444

4545

4646
#define ISOCTAL(c) (((c) >= '0') && ((c) <= '7'))

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy