summaryrefslogtreecommitdiff
path: root/src/gtm
diff options
context:
space:
mode:
authorMason Sharp2016-02-18 07:40:55 +0000
committerPavan Deolasee2016-10-18 09:58:32 +0000
commit0b309cad9157a5906b242f78a19519b4bcc4b662 (patch)
tree9109a9e2b7d0464e21675375aaa2413058a7a4ca /src/gtm
parente3a034e84f12a8103984205634ccc936d7d8240a (diff)
There was a missing commit from when the repo was forked,
applying to the new repo. Original commit from the sourceforge repo: commit e61639b864e83b6b45d11b737ec3c3d67aeb4b56 Author: Mason Sharp <mason_s@users.sourceforge.net> Date: Sun Jul 26 17:54:08 2015 -0700 Changed license from the Mozilla Public License to the PostgreSQL License
Diffstat (limited to 'src/gtm')
-rw-r--r--src/gtm/client/fe-connect.c4
-rw-r--r--src/gtm/client/fe-protocol.c4
-rw-r--r--src/gtm/client/gtm_client.c4
-rw-r--r--src/gtm/common/gtm_serialize.c4
-rw-r--r--src/gtm/main/gtm_seq.c4
-rw-r--r--src/gtm/main/gtm_txn.c4
-rw-r--r--src/gtm/main/main.c4
-rw-r--r--src/gtm/proxy/proxy_main.c4
-rw-r--r--src/gtm/recovery/register_common.c4
-rw-r--r--src/gtm/recovery/register_gtm.c4
10 files changed, 0 insertions, 40 deletions
diff --git a/src/gtm/client/fe-connect.c b/src/gtm/client/fe-connect.c
index 9e7fc0689a..d3b6f760f9 100644
--- a/src/gtm/client/fe-connect.c
+++ b/src/gtm/client/fe-connect.c
@@ -3,10 +3,6 @@
* fe-connect.c
* functions related to setting up a connection to the backend
*
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
* Portions Copyright (c) 2012-2014, TransLattice, Inc.
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
diff --git a/src/gtm/client/fe-protocol.c b/src/gtm/client/fe-protocol.c
index 0259868447..b52249bcea 100644
--- a/src/gtm/client/fe-protocol.c
+++ b/src/gtm/client/fe-protocol.c
@@ -3,10 +3,6 @@
* fe-protocol3.c
* functions that are specific to frontend/backend protocol version 3
*
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
* Portions Copyright (c) 2012-2014, TransLattice, Inc.
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
diff --git a/src/gtm/client/gtm_client.c b/src/gtm/client/gtm_client.c
index fadaa384e5..3d6830d912 100644
--- a/src/gtm/client/gtm_client.c
+++ b/src/gtm/client/gtm_client.c
@@ -2,10 +2,6 @@
*
* gtm-client.c
*
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
* Portions Copyright (c) 2012-2014, TransLattice, Inc.
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
diff --git a/src/gtm/common/gtm_serialize.c b/src/gtm/common/gtm_serialize.c
index cabdcb5941..fe9e3aca3a 100644
--- a/src/gtm/common/gtm_serialize.c
+++ b/src/gtm/common/gtm_serialize.c
@@ -3,10 +3,6 @@
* gtm_serialize.c
* Serialization management of GTM data
*
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
* Portions Copyright (c) 2012-2014, TransLattice, Inc.
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
diff --git a/src/gtm/main/gtm_seq.c b/src/gtm/main/gtm_seq.c
index e8d4e128e2..cd90cbafb9 100644
--- a/src/gtm/main/gtm_seq.c
+++ b/src/gtm/main/gtm_seq.c
@@ -3,10 +3,6 @@
* gtm_seq.c
* Sequence handling on GTM
*
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
* Portions Copyright (c) 2012-2014, TransLattice, Inc.
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
diff --git a/src/gtm/main/gtm_txn.c b/src/gtm/main/gtm_txn.c
index 18f01832c3..5e82bdc25f 100644
--- a/src/gtm/main/gtm_txn.c
+++ b/src/gtm/main/gtm_txn.c
@@ -3,10 +3,6 @@
* gtm_txn.c
* Transaction handling
*
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
* Portions Copyright (c) 2012-2014, TransLattice, Inc.
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
diff --git a/src/gtm/main/main.c b/src/gtm/main/main.c
index c0b3832123..c5e1947948 100644
--- a/src/gtm/main/main.c
+++ b/src/gtm/main/main.c
@@ -2,10 +2,6 @@
*
* main.c
*
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
* Portions Copyright (c) 2012-2014, TransLattice, Inc.
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
diff --git a/src/gtm/proxy/proxy_main.c b/src/gtm/proxy/proxy_main.c
index e129084ab9..c4f23b7210 100644
--- a/src/gtm/proxy/proxy_main.c
+++ b/src/gtm/proxy/proxy_main.c
@@ -2,10 +2,6 @@
*
* proxy_main.c
*
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
* Portions Copyright (c) 2012-2014, TransLattice, Inc.
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
diff --git a/src/gtm/recovery/register_common.c b/src/gtm/recovery/register_common.c
index ebca82b828..0d73685d1c 100644
--- a/src/gtm/recovery/register_common.c
+++ b/src/gtm/recovery/register_common.c
@@ -3,10 +3,6 @@
* register.c
* PGXC Node Register on GTM and GTM Proxy, node registering functions
*
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
* Portions Copyright (c) 2012-2014, TransLattice, Inc.
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
diff --git a/src/gtm/recovery/register_gtm.c b/src/gtm/recovery/register_gtm.c
index 6bbb426bf0..30448fcf1e 100644
--- a/src/gtm/recovery/register_gtm.c
+++ b/src/gtm/recovery/register_gtm.c
@@ -3,10 +3,6 @@
* register.c
* PGXC Node Register on GTM and GTM Proxy, node registering functions
*
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
* Portions Copyright (c) 2012-2014, TransLattice, Inc.
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California