diff options
author | Alvaro Herrera | 2008-03-26 18:48:59 +0000 |
---|---|---|
committer | Alvaro Herrera | 2008-03-26 18:48:59 +0000 |
commit | 78f02ca1f5443a43bc9fc47e41c7ac7c0f9717a3 (patch) | |
tree | 78c500e2febe23e389e63f68a90ac2b43fcacb54 /src/include | |
parent | 2d013c41a354f644079409157c71617887c298ce (diff) |
Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.
Per complaint from Tom Lane.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/utils/snapmgr.h (renamed from src/include/utils/snapmgmt.h) | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/utils/snapmgmt.h b/src/include/utils/snapmgr.h index 349523ea2e..c76c70feaa 100644 --- a/src/include/utils/snapmgmt.h +++ b/src/include/utils/snapmgr.h @@ -1,17 +1,17 @@ /*------------------------------------------------------------------------- * - * snapmgmt.h - * POSTGRES snapshot management definitions + * snapmgr.h + * POSTGRES snapshot manager * * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/snapmgmt.h,v 1.1 2008/03/26 16:20:48 alvherre Exp $ + * $PostgreSQL: pgsql/src/include/utils/snapmgr.h,v 1.1 2008/03/26 18:48:59 alvherre Exp $ * *------------------------------------------------------------------------- */ -#ifndef SNAPMGMT_H -#define SNAPMGMT_H +#ifndef SNAPMGR_H +#define SNAPMGR_H #include "utils/snapshot.h" @@ -30,4 +30,4 @@ extern Snapshot CopySnapshot(Snapshot snapshot); extern void FreeSnapshot(Snapshot snapshot); extern void FreeXactSnapshot(void); -#endif /* SNAPMGMT_H */ +#endif /* SNAPMGR_H */ |