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

Commit2843cf4

Browse files
committed
Added Postgres Professional copyright notice
1 parent1800214 commit2843cf4

File tree

80 files changed

+84
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+84
-2
lines changed

‎configure

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# gives unlimited permission to copy, distribute and modify it.
1313
#
1414
# Copyright (c) 1996-2015, PostgreSQL Global Development Group
15+
# Copyright (c) 2015-2016, Postgres Professional
1516
## -------------------- ##
1617
## M4sh Initialization. ##
1718
## -------------------- ##
@@ -1621,6 +1622,7 @@ This configure script is free software; the Free Software Foundation
16211622
gives unlimited permission to copy, distribute and modify it.
16221623
16231624
Copyright (c) 1996-2015, PostgreSQL Global Development Group
1625+
Copyright (c) 2015-2016, Postgres Professional
16241626
_ACEOF
16251627
exit
16261628
fi

‎configure.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.69], [], [m4_fatal([Autoconf version 2.6
2323
Untested combinations of 'autoconf' and PostgreSQL versions are not
2424
recommended. You can remove the check from 'configure.in' but it is then
2525
your responsibility whether the result works or not.])])
26-
AC_COPYRIGHT([Copyright (c) 1996-2015, PostgreSQL Global Development Group])
26+
AC_COPYRIGHT([Copyright (c) 1996-2015, PostgreSQL Global Development Group
27+
Copyright (c) 2015-2016, Postgres Professional])
2728
AC_CONFIG_SRCDIR([src/backend/access/common/heaptuple.c])
2829
AC_CONFIG_AUX_DIR(config)
2930
AC_PREFIX_DEFAULT(/usr/local/pgsql)

‎contrib/dblink/dblink.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
*
1111
* contrib/dblink/dblink.c
1212
* Copyright (c) 2001-2015, PostgreSQL Global Development Group
13+
* Copyright (c) 2015-2016, Postgres Professional
1314
* ALL RIGHTS RESERVED;
1415
*
1516
* Permission to use, copy, modify, and distribute this software and its

‎contrib/pageinspect/heapfuncs.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* anyway.
1717
*
1818
* Copyright (c) 2007-2015, PostgreSQL Global Development Group
19+
* Copyright (c) 2015-2016, Postgres Professional
1920
*
2021
* IDENTIFICATION
2122
* contrib/pageinspect/heapfuncs.c

‎contrib/pg_stat_statements/pg_stat_statements.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
*
5050
*
5151
* Copyright (c) 2008-2015, PostgreSQL Global Development Group
52+
* Copyright (c) 2015-2016, Postgres Professional
5253
*
5354
* IDENTIFICATION
5455
* contrib/pg_stat_statements/pg_stat_statements.c

‎contrib/pg_trgm/trgm_regexp.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@
181181
* 7) Mark state 3 final because state 5 of source NFA is marked as final.
182182
*
183183
*
184+
* Portions Copyright (c) 2015-2016, Postgres Professional
184185
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
185186
* Portions Copyright (c) 1994, Regents of the University of California
186187
*

‎src/backend/access/common/indextuple.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* This file contains index tuple accessor and mutator routines,
55
* as well as various tuple utilities.
66
*
7+
* Portions Copyright (c) 2015-2016, Postgres Professional
78
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
89
* Portions Copyright (c) 1994, Regents of the University of California
910
*

‎src/backend/access/hash/hashfunc.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* hashfunc.c
44
* Support functions for hash access method.
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/access/index/genam.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* genam.c
44
* general index access method routines
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/access/nbtree/nbtinsert.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* nbtinsert.c
44
* Item insertion in Lehman and Yao btrees for Postgres.
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/access/nbtree/nbtpage.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* BTree-specific page management code for the Postgres btree access
55
* method.
66
*
7+
* Portions Copyright (c) 2015-2016, Postgres Professional
78
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
89
* Portions Copyright (c) 1994, Regents of the University of California
910
*

‎src/backend/access/nbtree/nbtsort.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
* This code isn't concerned about the FSM at all. The caller is responsible
5656
* for initializing that.
5757
*
58+
* Portions Copyright (c) 2015-2016, Postgres Professional
5859
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
5960
* Portions Copyright (c) 1994, Regents of the University of California
6061
*

‎src/backend/access/nbtree/nbtutils.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* nbtutils.c
44
* Utility code for Postgres btree implementation.
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/access/transam/twophase.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* twophase.c
44
*Two-phase commit support functions.
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/access/transam/xlog.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*PostgreSQL transaction log manager
55
*
66
*
7+
* Portions Copyright (c) 2015-2016, Postgres Professional
78
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
89
* Portions Copyright (c) 1994, Regents of the University of California
910
*

‎src/backend/bootstrap/bootparse.y

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* bootparse.y
55
* yacc grammar for the "bootstrap" mode (BKI file format)
66
*
7+
* Portions Copyright (c) 2015-2016, Postgres Professional
78
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
89
* Portions Copyright (c) 1994, Regents of the University of California
910
*

‎src/backend/catalog/index.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* index.c
44
* code to create and destroy POSTGRES index relations
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/catalog/indexing.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* This file contains routines to support indexes defined on system
55
* catalogs.
66
*
7+
* Portions Copyright (c) 2015-2016, Postgres Professional
78
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
89
* Portions Copyright (c) 1994, Regents of the University of California
910
*

‎src/backend/catalog/toasting.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* This file contains routines to support creation of toast tables
55
*
66
*
7+
* Portions Copyright (c) 2015-2016, Postgres Professional
78
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
89
* Portions Copyright (c) 1994, Regents of the University of California
910
*

‎src/backend/commands/indexcmds.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* indexcmds.c
44
* POSTGRES define and remove index code.
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/executor/execIndexing.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@
9595
* with the higher XID backs out.
9696
*
9797
*
98+
* Portions Copyright (c) 2015-2016, Postgres Professional
9899
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
99100
* Portions Copyright (c) 1994, Regents of the University of California
100101
*

‎src/backend/nodes/copyfuncs.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* be handled easily in a simple depth-first traversal.
1212
*
1313
*
14+
* Portions Copyright (c) 2015-2016, Postgres Professional
1415
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
1516
* Portions Copyright (c) 1994, Regents of the University of California
1617
*

‎src/backend/nodes/equalfuncs.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* "x" to be considered equal() to another reference to "x" in the query.
1919
*
2020
*
21+
* Portions Copyright (c) 2015-2016, Postgres Professional
2122
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
2223
* Portions Copyright (c) 1994, Regents of the University of California
2324
*

‎src/backend/nodes/outfuncs.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* outfuncs.c
44
* Output functions for Postgres tree nodes.
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/optimizer/path/pathkeys.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
* the nature and use of path keys.
88
*
99
*
10+
* Portions Copyright (c) 2015-2016, Postgres Professional
1011
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
1112
* Portions Copyright (c) 1994, Regents of the University of California
1213
*

‎src/backend/optimizer/util/plancat.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* routines for accessing the system catalogs
55
*
66
*
7+
* Portions Copyright (c) 2015-2016, Postgres Professional
78
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
89
* Portions Copyright (c) 1994, Regents of the University of California
910
*

‎src/backend/parser/gram.y

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
* gram.y
77
* POSTGRESQL BISON rules/actions
88
*
9+
* Portions Copyright (c) 2015-2016, Postgres Professional
910
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
1011
* Portions Copyright (c) 1994, Regents of the University of California
1112
*

‎src/backend/parser/parse_utilcmd.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* a quick copyObject() call before manipulating the query tree.
1717
*
1818
*
19+
* Portions Copyright (c) 2015-2016, Postgres Professional
1920
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
2021
* Portions Copyright (c) 1994, Regents of the University of California
2122
*

‎src/backend/storage/buffer/buf_init.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* buf_init.c
44
* buffer manager initialization routines
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/storage/buffer/buf_table.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* before the lock is released (see notes in README).
1111
*
1212
*
13+
* Portions Copyright (c) 2015-2016, Postgres Professional
1314
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
1415
* Portions Copyright (c) 1994, Regents of the University of California
1516
*

‎src/backend/storage/buffer/bufmgr.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* bufmgr.c
44
* buffer manager interface routines
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/storage/buffer/freelist.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* routines for managing the buffer pool's replacement strategy.
55
*
66
*
7+
* Portions Copyright (c) 2015-2016, Postgres Professional
78
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
89
* Portions Copyright (c) 1994, Regents of the University of California
910
*

‎src/backend/storage/buffer/localbuf.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* local buffer manager. Fast buffer manager for temporary tables,
55
* which never need to be WAL-logged or checkpointed, etc.
66
*
7+
* Portions Copyright (c) 2015-2016, Postgres Professional
78
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
89
* Portions Copyright (c) 1994-5, Regents of the University of California
910
*

‎src/backend/storage/ipc/shmem.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* shmem.c
44
* create shared memory and initialize shared memory data structures.
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/storage/lmgr/lock.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* lock.c
44
* POSTGRES primary lock mechanism
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
* Portions Copyright (c) 1994, Regents of the University of California
89
*

‎src/backend/storage/lmgr/lwlock.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* appropriate value for a free lock. The meaning of the variable is up to
2121
* the caller, the lightweight lock code just assigns and compares it.
2222
*
23+
* Portions Copyright (c) 2015-2016, Postgres Professional
2324
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
2425
* Portions Copyright (c) 1994, Regents of the University of California
2526
*

‎src/backend/storage/lmgr/predicate.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
*
6565
* (7)A write from a serializable transaction must ensure that an xact
6666
*record exists for the transaction, with the same lifespan (until
67+
*
6768
*all concurrent transaction complete or the transaction is rolled
6869
*back) so that rw-dependencies to that transaction can be
6970
*detected.
@@ -125,6 +126,7 @@
125126
*- Protects both PredXact and SerializableXidHash.
126127
*
127128
*
129+
* Portions Copyright (c) 2015-2016, Postgres Professional
128130
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
129131
* Portions Copyright (c) 1994, Regents of the University of California
130132
*

‎src/backend/tsearch/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
#
33
# Makefile for backend/tsearch
44
#
5-
# Copyright (c) 2006-2016, PostgreSQL Global Development Group
5+
# Portions Copyright (c) 2015-2016, Postgres Professional
6+
# Portions Copyright (c) 2006-2016, PostgreSQL Global Development Group
67
#
78
# src/backend/tsearch/Makefile
89
#

‎src/backend/tsearch/spell.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* spell.c
44
*Normalizing word with ISpell
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
78
*
89
* Ispell dictionary

‎src/backend/tsearch/to_tsany.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* to_tsany.c
44
*to_ts* function definitions
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
*
89
*

‎src/backend/tsearch/ts_parse.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* ts_parse.c
44
*main parse functions for tsearch
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
*
89
*

‎src/backend/tsearch/ts_selfuncs.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* ts_selfuncs.c
44
* Selectivity estimation functions for text search operators.
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
*
89
*

‎src/backend/tsearch/wparser_def.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* wparser_def.c
44
*Default text search parser
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
*
89
*

‎src/backend/utils/adt/formatting.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* src/backend/utils/adt/formatting.c
55
*
66
*
7+
* Portions Copyright (c) 2015-2016, Postgres Professional
78
* Portions Copyright (c) 1999-2015, PostgreSQL Global Development Group
89
*
910
*

‎src/backend/utils/adt/ruleutils.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Functions to convert stored expressions/querytrees back to
55
* source text
66
*
7+
* Portions Copyright (c) 2015-2016, Postgres Professional
78
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
89
* Portions Copyright (c) 1994, Regents of the University of California
910
*

‎src/backend/utils/adt/tsginidx.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* tsginidx.c
44
* GIN support functions for tsvector_ops
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
*
89
*

‎src/backend/utils/adt/tsgistidx.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* tsgistidx.c
44
* GiST support functions for tsvector_ops
55
*
6+
* Portions Copyright (c) 2015-2016, Postgres Professional
67
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
78
*
89
*

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp