You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(28) |
Jun
(12) |
Jul
(11) |
Aug
(12) |
Sep
(5) |
Oct
(19) |
Nov
(14) |
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(18) |
Feb
(30) |
Mar
(115) |
Apr
(89) |
May
(50) |
Jun
(44) |
Jul
(22) |
Aug
(13) |
Sep
(11) |
Oct
(30) |
Nov
(28) |
Dec
(39) |
2012 |
Jan
(38) |
Feb
(18) |
Mar
(43) |
Apr
(91) |
May
(108) |
Jun
(46) |
Jul
(37) |
Aug
(44) |
Sep
(33) |
Oct
(29) |
Nov
(36) |
Dec
(15) |
2013 |
Jan
(35) |
Feb
(611) |
Mar
(5) |
Apr
(55) |
May
(30) |
Jun
(28) |
Jul
(458) |
Aug
(34) |
Sep
(9) |
Oct
(39) |
Nov
(22) |
Dec
(32) |
2014 |
Jan
(16) |
Feb
(16) |
Mar
(42) |
Apr
(179) |
May
(7) |
Jun
(6) |
Jul
(9) |
Aug
|
Sep
(4) |
Oct
|
Nov
(3) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
1
(3) |
2
(5) |
3
|
4
(4) |
5
|
6
|
7
(7) |
8
(10) |
9
(6) |
10
(5) |
11
(1) |
12
|
13
|
14
|
15
|
16
|
17
(4) |
18
(1) |
19
|
20
|
21
(5) |
22
(15) |
23
(18) |
24
(7) |
25
(4) |
26
|
27
|
28
(3) |
29
(2) |
30
(11) |
31
(4) |
|
|
From: Michael P. <mic...@us...> - 2011-03-31 16:21:23
|
Project "Postgres-XC". The branch, master has been updated via 0429a889372c6db0b4b1253624601c42410cc108 (commit) from 124814afe8603b4ec933f6f7b0b646a2a36f53cd (commit) - Log ----------------------------------------------------------------- commit 0429a889372c6db0b4b1253624601c42410cc108 Author: Michael P <mic...@us...> Date: Fri Apr 1 00:31:29 2011 +0900 Support for GRANT and REVOKE Spread GRANT and REVOKE to all the nodes of the cluster. diff --git a/src/backend/tcop/utility.c b/src/backend/tcop/utility.c index 284a52c..49c018b 100644 --- a/src/backend/tcop/utility.c +++ b/src/backend/tcop/utility.c @@ -1008,10 +1008,20 @@ standard_ProcessUtility(Node *parsetree, case T_GrantStmt: ExecuteGrantStmt((GrantStmt *) parsetree); + +#ifdef PGXC + if (IS_PGXC_COORDINATOR) + ExecUtilityStmtOnNodes(queryString, NULL, false, EXEC_ON_ALL_NODES); +#endif break; case T_GrantRoleStmt: GrantRole((GrantRoleStmt *) parsetree); + +#ifdef PGXC + if (IS_PGXC_COORDINATOR) + ExecUtilityStmtOnNodes(queryString, NULL, false, EXEC_ON_ALL_NODES); +#endif break; case T_AlterDefaultPrivilegesStmt: ----------------------------------------------------------------------- Summary of changes: src/backend/tcop/utility.c | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-03-31 10:37:23
|
Project "Postgres-XC". The branch, master has been updated via 124814afe8603b4ec933f6f7b0b646a2a36f53cd (commit) from baa0d2e4589347558b6fd894d431c1ff42151492 (commit) - Log ----------------------------------------------------------------- commit 124814afe8603b4ec933f6f7b0b646a2a36f53cd Author: Michael P <mic...@us...> Date: Thu Mar 31 19:36:40 2011 +0900 Remove debug flag from GTM Makefile diff --git a/src/gtm/Makefile.global b/src/gtm/Makefile.global index 684690b..09c8993 100644 --- a/src/gtm/Makefile.global +++ b/src/gtm/Makefile.global @@ -29,7 +29,7 @@ enable_shared = yes # Compilers CPP = gcc -E -CPPFLAGS = -g -D_GNU_SOURCE +CPPFLAGS = -D_GNU_SOURCE override CPPFLAGS := -I$(top_srcdir)/include $(CPPFLAGS) ----------------------------------------------------------------------- Summary of changes: src/gtm/Makefile.global | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-03-31 10:32:25
|
Project "Postgres-XC". The branch, master has been updated via baa0d2e4589347558b6fd894d431c1ff42151492 (commit) from b9c601ba5509e9c90f1d4d184a514ce47ed7397d (commit) - Log ----------------------------------------------------------------- commit baa0d2e4589347558b6fd894d431c1ff42151492 Author: Michael P <mic...@us...> Date: Thu Mar 31 19:31:02 2011 +0900 Fix for make -j This wasn't compiling correctly. Patch written from Wang Diancheng diff --git a/src/Makefile b/src/Makefile index 2ca5e05..918ad95 100644 --- a/src/Makefile +++ b/src/Makefile @@ -18,11 +18,11 @@ all install installdirs uninstall distprep: $(MAKE) -C timezone $@ # GTM should be built before backend because of dependancy $(MAKE) -C gtm $@ + $(MAKE) -C interfaces $@ $(MAKE) -C backend $@ $(MAKE) -C backend/utils/mb/conversion_procs $@ $(MAKE) -C backend/snowball $@ $(MAKE) -C include $@ - $(MAKE) -C interfaces $@ $(MAKE) -C backend/replication/libpqwalreceiver $@ $(MAKE) -C bin $@ $(MAKE) -C pl $@ ----------------------------------------------------------------------- Summary of changes: src/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2011-03-31 09:08:43
|
Project "Postgres-XC". The branch, ha_support has been updated via 263fffdb2d9865eac2d6780b2ac7edb6d4c0b857 (commit) from 3df6c0f60081d0097939b34978d3d545f57b7d01 (commit) - Log ----------------------------------------------------------------- commit 263fffdb2d9865eac2d6780b2ac7edb6d4c0b857 Author: Koichi Suzuki <koi...@gm...> Date: Thu Mar 31 18:08:18 2011 +0900 This commit added headers to some of GTM source files. diff --git a/src/gtm/common/aset.c b/src/gtm/common/aset.c index 3c14fb1..300aa05 100644 --- a/src/gtm/common/aset.c +++ b/src/gtm/common/aset.c @@ -12,7 +12,7 @@ * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/mmgr/aset.c,v 1.77 2008/04/11 22:54:23 tgl Exp $ + * $Postgres-XC$ * * NOTE: * This is a new (Feb. 05, 1999) implementation of the allocation set diff --git a/src/gtm/common/assert.c b/src/gtm/common/assert.c index ea182d5..55da27b 100644 --- a/src/gtm/common/assert.c +++ b/src/gtm/common/assert.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/error/assert.c,v 1.35 2008/01/01 19:45:53 momjian Exp $ + * $Postgres-XC$ * * NOTE * This should eventually work with elog() diff --git a/src/gtm/gtm_ctl/gtm_ctl.c b/src/gtm/gtm_ctl/gtm_ctl.c index e6b277e..91690c9 100644 --- a/src/gtm/gtm_ctl/gtm_ctl.c +++ b/src/gtm/gtm_ctl/gtm_ctl.c @@ -5,7 +5,7 @@ * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/libpq/ip.c b/src/gtm/libpq/ip.c index 08929e9..3f719fc 100644 --- a/src/gtm/libpq/ip.c +++ b/src/gtm/libpq/ip.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/libpq/ip.c,v 1.43 2009/01/01 17:23:42 momjian Exp $ + * $Postgres-XC$ * * This file and the IPV6 implementation were initially provided by * Nigel Kukard <nk...@lb...>, Linux Based Systems Design diff --git a/src/gtm/libpq/pqcomm.c b/src/gtm/libpq/pqcomm.c index 4543665..4bc9aab 100644 --- a/src/gtm/libpq/pqcomm.c +++ b/src/gtm/libpq/pqcomm.c @@ -31,7 +31,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/backend/libpq/pqcomm.c,v 1.198 2008/01/01 19:45:49 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/libpq/pqformat.c b/src/gtm/libpq/pqformat.c index 6d8e5f9..2bd6d59 100644 --- a/src/gtm/libpq/pqformat.c +++ b/src/gtm/libpq/pqformat.c @@ -25,7 +25,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/backend/libpq/pqformat.c,v 1.48 2009/01/01 17:23:42 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/libpq/pqsignal.c b/src/gtm/libpq/pqsignal.c index 0c7914e..39687bb 100644 --- a/src/gtm/libpq/pqsignal.c +++ b/src/gtm/libpq/pqsignal.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/libpq/pqsignal.c,v 1.44 2008/01/01 19:45:49 momjian Exp $ + * $Postgres-XC$ * * NOTES * This shouldn't be in libpq, but the monitor and some other diff --git a/src/gtm/libpq/strlcpy.c b/src/gtm/libpq/strlcpy.c index 28a3740..64fbac4 100644 --- a/src/gtm/libpq/strlcpy.c +++ b/src/gtm/libpq/strlcpy.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/strlcpy.c,v 1.5 2008/01/01 19:46:00 momjian Exp $ + * $Postgres-XC$ * * This file was taken from OpenBSD and is used on platforms that don't * provide strlcpy(). The OpenBSD copyright terms follow. diff --git a/src/gtm/main/gtm_seq.c b/src/gtm/main/gtm_seq.c index 60a612f..8195b39 100644 --- a/src/gtm/main/gtm_seq.c +++ b/src/gtm/main/gtm_seq.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/main/gtm_snap.c b/src/gtm/main/gtm_snap.c index c2d818b..6bf86a7 100644 --- a/src/gtm/main/gtm_snap.c +++ b/src/gtm/main/gtm_snap.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/main/gtm_stat.c b/src/gtm/main/gtm_stat.c index d9fa7aa..892e2f8 100644 --- a/src/gtm/main/gtm_stat.c +++ b/src/gtm/main/gtm_stat.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/main/gtm_stats.c b/src/gtm/main/gtm_stats.c index 2548cd4..297b8f8 100644 --- a/src/gtm/main/gtm_stats.c +++ b/src/gtm/main/gtm_stats.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/main/gtm_thread.c b/src/gtm/main/gtm_thread.c index 2fd6dc2..fe48e7c 100644 --- a/src/gtm/main/gtm_thread.c +++ b/src/gtm/main/gtm_thread.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/main/gtm_time.c b/src/gtm/main/gtm_time.c index 1e1451e..be30a46 100644 --- a/src/gtm/main/gtm_time.c +++ b/src/gtm/main/gtm_time.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/main/gtm_txn.c b/src/gtm/main/gtm_txn.c index 5715b40..9cfbeb6 100644 --- a/src/gtm/main/gtm_txn.c +++ b/src/gtm/main/gtm_txn.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/main/main.c b/src/gtm/main/main.c index 3fbf283..66096f5 100644 --- a/src/gtm/main/main.c +++ b/src/gtm/main/main.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/path/path.c b/src/gtm/path/path.c index 11c6290..7076afe 100644 --- a/src/gtm/path/path.c +++ b/src/gtm/path/path.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/gtm/recovery/register.c b/src/gtm/recovery/register.c index 0c40596..5f44425 100644 --- a/src/gtm/recovery/register.c +++ b/src/gtm/recovery/register.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/assert.h b/src/include/gtm/assert.h index 97cfc2d..ace5f7f 100644 --- a/src/include/gtm/assert.h +++ b/src/include/gtm/assert.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/elog.h b/src/include/gtm/elog.h index 9c410db..e21cac0 100644 --- a/src/include/gtm/elog.h +++ b/src/include/gtm/elog.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.98 2009/01/01 17:24:02 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm.h b/src/include/gtm/gtm.h index ad5882b..c2894e3 100644 --- a/src/include/gtm/gtm.h +++ b/src/include/gtm/gtm.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_c.h b/src/include/gtm/gtm_c.h index 116aa67..3d7c179 100644 --- a/src/include/gtm/gtm_c.h +++ b/src/include/gtm/gtm_c.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * c.h + * gtm_c.h * Fundamental C definitions. This is included by every .c file in * PostgreSQL (via either postgres.h or postgres_fe.h, as appropriate). * @@ -13,7 +13,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/c.h,v 1.234 2009/01/01 17:23:55 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_client.h b/src/include/gtm/gtm_client.h index c86a874..791468a 100644 --- a/src/include/gtm/gtm_client.h +++ b/src/include/gtm/gtm_client.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_conn.h b/src/include/gtm/gtm_conn.h index 40256be..f6c39d0 100644 --- a/src/include/gtm/gtm_conn.h +++ b/src/include/gtm/gtm_conn.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_ext.h b/src/include/gtm/gtm_ext.h index 49b0253..f8963ce 100644 --- a/src/include/gtm/gtm_ext.h +++ b/src/include/gtm/gtm_ext.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_ip.h b/src/include/gtm/gtm_ip.h index 2f89418..262af32 100644 --- a/src/include/gtm/gtm_ip.h +++ b/src/include/gtm/gtm_ip.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * ip.h + * gtm_ip.h * Definitions for IPv6-aware network access. * * These definitions are used by both frontend and backend code. Be careful @@ -9,7 +9,7 @@ * Copyright (c) 2003-2009, PostgreSQL Global Development Group * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/libpq/ip.h,v 1.20 2008/01/01 19:45:58 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_list.h b/src/include/gtm/gtm_list.h index 9ead69b..f73c9a1 100644 --- a/src/include/gtm/gtm_list.h +++ b/src/include/gtm/gtm_list.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * pg_list.h + * gtm_list.h * interface for PostgreSQL generic linked list package * * This package implements singly-linked homogeneous lists. @@ -31,7 +31,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/nodes/pg_list.h,v 1.59 2008/08/14 18:48:00 tgl Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_lock.h b/src/include/gtm/gtm_lock.h index 3da85c1..3404b3d 100644 --- a/src/include/gtm/gtm_lock.h +++ b/src/include/gtm/gtm_lock.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_msg.h b/src/include/gtm/gtm_msg.h index 4ec7dac..b3071a8 100644 --- a/src/include/gtm/gtm_msg.h +++ b/src/include/gtm/gtm_msg.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_proxy.h b/src/include/gtm/gtm_proxy.h index ee12fd5..4fcf5f0 100644 --- a/src/include/gtm/gtm_proxy.h +++ b/src/include/gtm/gtm_proxy.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_seq.h b/src/include/gtm/gtm_seq.h index 7e75445..c9e993c 100644 --- a/src/include/gtm/gtm_seq.h +++ b/src/include/gtm/gtm_seq.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_time.h b/src/include/gtm/gtm_time.h index 90f36ea..22d068d 100644 --- a/src/include/gtm/gtm_time.h +++ b/src/include/gtm/gtm_time.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/gtm_txn.h b/src/include/gtm/gtm_txn.h index 86a0d49..5b5f75b 100644 --- a/src/include/gtm/gtm_txn.h +++ b/src/include/gtm/gtm_txn.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/ip.h b/src/include/gtm/ip.h index fa4e3d3..cdd69ba 100644 --- a/src/include/gtm/ip.h +++ b/src/include/gtm/ip.h @@ -9,7 +9,7 @@ * Copyright (c) 2003-2009, PostgreSQL Global Development Group * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/libpq/ip.h,v 1.20 2008/01/01 19:45:58 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/libpq-be.h b/src/include/gtm/libpq-be.h index c73335d..8e9805f 100644 --- a/src/include/gtm/libpq-be.h +++ b/src/include/gtm/libpq-be.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/libpq/libpq-be.h,v 1.69 2009/01/01 17:23:59 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/libpq-fe.h b/src/include/gtm/libpq-fe.h index 1ae16c1..44ebf58 100644 --- a/src/include/gtm/libpq-fe.h +++ b/src/include/gtm/libpq-fe.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-fe.h,v 1.145 2009/01/01 17:24:03 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/libpq-int.h b/src/include/gtm/libpq-int.h index 5c6714b..30775e3 100644 --- a/src/include/gtm/libpq-int.h +++ b/src/include/gtm/libpq-int.h @@ -13,7 +13,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-int.h,v 1.139 2009/01/01 17:24:03 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/memnodes.h b/src/include/gtm/memnodes.h index 9c55e46..8f5d3e4 100644 --- a/src/include/gtm/memnodes.h +++ b/src/include/gtm/memnodes.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/nodes/memnodes.h,v 1.34 2008/01/01 19:45:58 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/memutils.h b/src/include/gtm/memutils.h index 9666c44..fc1e2d3 100644 --- a/src/include/gtm/memutils.h +++ b/src/include/gtm/memutils.h @@ -11,7 +11,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/utils/memutils.h,v 1.64 2008/01/01 19:45:59 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/palloc.h b/src/include/gtm/palloc.h index e81e9d1..2efaaa4 100644 --- a/src/include/gtm/palloc.h +++ b/src/include/gtm/palloc.h @@ -22,7 +22,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/utils/palloc.h,v 1.40 2008/06/28 16:45:22 tgl Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/path.h b/src/include/gtm/path.h index e95ca5e..6f18856 100644 --- a/src/include/gtm/path.h +++ b/src/include/gtm/path.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/pqcomm.h b/src/include/gtm/pqcomm.h index e0de16e..1544615 100644 --- a/src/include/gtm/pqcomm.h +++ b/src/include/gtm/pqcomm.h @@ -10,7 +10,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/libpq/pqcomm.h,v 1.109 2008/10/28 12:10:44 mha Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/pqexpbuffer.h b/src/include/gtm/pqexpbuffer.h index 039a481..6e4f586 100644 --- a/src/include/gtm/pqexpbuffer.h +++ b/src/include/gtm/pqexpbuffer.h @@ -19,7 +19,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/interfaces/libpq/pqexpbuffer.h,v 1.21 2008/11/26 16:23:11 tgl Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/pqformat.h b/src/include/gtm/pqformat.h index 4a07367..e5b4541 100644 --- a/src/include/gtm/pqformat.h +++ b/src/include/gtm/pqformat.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/libpq/pqformat.h,v 1.27 2009/01/01 17:23:59 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/pqsignal.h b/src/include/gtm/pqsignal.h index 523a151..ce90997 100644 --- a/src/include/gtm/pqsignal.h +++ b/src/include/gtm/pqsignal.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/libpq/pqsignal.h,v 1.32 2008/01/01 19:45:58 momjian Exp $ + * $Postgres-XC$ * * NOTES * This shouldn't be in libpq, but the monitor and some other diff --git a/src/include/gtm/register.h b/src/include/gtm/register.h index 7c2461f..0a43bf1 100644 --- a/src/include/gtm/register.h +++ b/src/include/gtm/register.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL$ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ diff --git a/src/include/gtm/stringinfo.h b/src/include/gtm/stringinfo.h index c34e6a3..d504685 100644 --- a/src/include/gtm/stringinfo.h +++ b/src/include/gtm/stringinfo.h @@ -11,7 +11,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation * - * $PostgreSQL: pgsql/src/include/lib/stringinfo.h,v 1.35 2008/01/01 19:45:57 momjian Exp $ + * $Postgres-XC$ * *------------------------------------------------------------------------- */ ----------------------------------------------------------------------- Summary of changes: src/gtm/common/aset.c | 2 +- src/gtm/common/assert.c | 2 +- src/gtm/gtm_ctl/gtm_ctl.c | 2 +- src/gtm/libpq/ip.c | 2 +- src/gtm/libpq/pqcomm.c | 2 +- src/gtm/libpq/pqformat.c | 2 +- src/gtm/libpq/pqsignal.c | 2 +- src/gtm/libpq/strlcpy.c | 2 +- src/gtm/main/gtm_seq.c | 2 +- src/gtm/main/gtm_snap.c | 2 +- src/gtm/main/gtm_stat.c | 2 +- src/gtm/main/gtm_stats.c | 2 +- src/gtm/main/gtm_thread.c | 2 +- src/gtm/main/gtm_time.c | 2 +- src/gtm/main/gtm_txn.c | 2 +- src/gtm/main/main.c | 2 +- src/gtm/path/path.c | 2 +- src/gtm/recovery/register.c | 2 +- src/include/gtm/assert.h | 2 +- src/include/gtm/elog.h | 2 +- src/include/gtm/gtm.h | 2 +- src/include/gtm/gtm_c.h | 4 ++-- src/include/gtm/gtm_client.h | 2 +- src/include/gtm/gtm_conn.h | 2 +- src/include/gtm/gtm_ext.h | 2 +- src/include/gtm/gtm_ip.h | 4 ++-- src/include/gtm/gtm_list.h | 4 ++-- src/include/gtm/gtm_lock.h | 2 +- src/include/gtm/gtm_msg.h | 2 +- src/include/gtm/gtm_proxy.h | 2 +- src/include/gtm/gtm_seq.h | 2 +- src/include/gtm/gtm_time.h | 2 +- src/include/gtm/gtm_txn.h | 2 +- src/include/gtm/ip.h | 2 +- src/include/gtm/libpq-be.h | 2 +- src/include/gtm/libpq-fe.h | 2 +- src/include/gtm/libpq-int.h | 2 +- src/include/gtm/memnodes.h | 2 +- src/include/gtm/memutils.h | 2 +- src/include/gtm/palloc.h | 2 +- src/include/gtm/path.h | 2 +- src/include/gtm/pqcomm.h | 2 +- src/include/gtm/pqexpbuffer.h | 2 +- src/include/gtm/pqformat.h | 2 +- src/include/gtm/pqsignal.h | 2 +- src/include/gtm/register.h | 2 +- src/include/gtm/stringinfo.h | 2 +- 47 files changed, 50 insertions(+), 50 deletions(-) hooks/post-receive -- Postgres-XC |