8000 Remove some useless comments at top of files · percona/postgres@ca790cd · GitHub
[go: up one dir, main page]

Skip to content

Commit ca790cd

Browse files
committed
Remove some useless comments at top of files
We're long past the years where someone is gonna read a print-out of these files and thus need a reminder of what the file name is. And even if someone wanted to do that it's easy to have your printer program automatically add the file name to the header or footer of each page now-a-days.
1 parent 9f44f1b commit ca790cd

38 files changed

+63
-300
lines changed

contrib/pg_tde/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# contrib/pg_tde/Makefile
2-
31
PGFILEDESC = "pg_tde access method"
42
MODULE_big = pg_tde
53
EXTENSION = pg_tde

contrib/pg_tde/pg_tde--1.0-rc.sql

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/* contrib/pg_tde/pg_tde--1.0-rc.sql */
2-
31
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
42
\echo Use "CREATE EXTENSION pg_tde" to load this file. \quit
53

contrib/pg_tde/pg_tde.control

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# pg_tde extension
21
comment = 'pg_tde access method'
32
default_version = '1.0-rc'
43
module_pathname = '$libdir/pg_tde'

contrib/pg_tde/src/access/pg_tde_xlog.c

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
1-
/*-------------------------------------------------------------------------
2-
*
3-
* tdeheap_xlog.c
4-
* TDE XLog resource manager
5-
*
6-
*
7-
* IDENTIFICATION
8-
* src/access/pg_tde_xlog.c
9-
*
10-
*-------------------------------------------------------------------------
1+
/*
2+
* TDE XLog resource manager
113
*/
124

135
#include "postgres.h"

contrib/pg_tde/src/access/pg_tde_xlog_smgr.c

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
1-
/*-------------------------------------------------------------------------
2-
*
3-
* pg_tde_xlog_smgr.c
4-
* Encrypted XLog storage manager
5-
*
6-
*
7-
* IDENTIFICATION
8-
* src/access/pg_tde_xlog_smgr.c
9-
*
10-
*-------------------------------------------------------------------------
1+
/*
2+
* Encrypted XLog storage manager
113
*/
124

135
#include "postgres.h"

contrib/pg_tde/src/catalog/tde_keyring.c

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
1-
/*-------------------------------------------------------------------------
2-
*
3-
* tde_keyring.c
4-
* Deals 10000 with the tde keyring configuration
5-
* routines.
6-
*
7-
* IDENTIFICATION
8-
* contrib/pg_tde/src/catalog/tde_keyring.c
9-
*
10-
*-------------------------------------------------------------------------
1+
/*
2+
* Deals with the tde keyring configuration routines.
113
*/
124

135
#include "postgres.h"

contrib/pg_tde/src/catalog/tde_keyring_parse_opts.c

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
1-
/*-------------------------------------------------------------------------
2-
*
3-
* tde_keyring_parse_opts.c
4-
* Parser routines for the keyring JSON options
1+
/*
2+
* Parser routines for the keyring JSON options
53
*
64
* We expect one-dimentional JSON object with scalar fields
7-
*
8-
* IDENTIFICATION
9-
* contrib/pg_tde/src/catalog/tde_keyring_parse_opts.c
10-
*
11-
*-------------------------------------------------------------------------
125
*/
136

147
#include "postgres.h"

contrib/pg_tde/src/catalog/tde_principal_key.c

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
1-
/*-------------------------------------------------------------------------
2-
*
3-
* tde_principal_key.c
4-
* Deals with the tde principal key configuration catalog
5-
* routines.
6-
*
7-
* IDENTIFICATION
8-
* contrib/pg_tde/src/catalog/tde_principal_key.c
9-
*
10-
*-------------------------------------------------------------------------
1+
/*
2+
* Deals with the tde principal key configuration catalog routines.
113
*/
124

135
#include "postgres.h"

contrib/pg_tde/src/common/pg_tde_utils.c

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
1-
/*-------------------------------------------------------------------------
2-
*
3-
* pg_tde_utils.c
4-
* Utility functions.
5-
*
6-
* IDENTIFICATION
7-
* contrib/pg_tde/src/pg_tde_utils.c
8-
*
9-
*-------------------------------------------------------------------------
10-
*/
11-
121
#include "postgres.h"
132

143
#include "common/pg_tde_utils.h"

contrib/pg_tde/src/include/access/pg_tde_fe_init.h

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
/*-------------------------------------------------------------------------
2-
*
3-
* pg_tde_fe.h
4-
* Frontened definitions for encrypted XLog storage manager
5-
*
6-
*-------------------------------------------------------------------------
1+
/*
2+
* Frontened definitions for encrypted XLog storage manager
73
*/
84

95
#ifndef PG_TDE_FE_INIT_H

0 commit comments

Comments
 (0)
0