From 1d60a946ffb8589f615f13343669919efa93246a Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Sun, 11 Nov 2012 03:00:00 +0000 Subject: [PATCH] Added The Reorg Development Team copyright --- COPYRIGHT | 1 + Makefile | 1 + bin/Makefile | 1 + bin/pg_repack.c | 1 + bin/pgut/pgut-fe.c | 1 + bin/pgut/pgut-fe.h | 1 + bin/pgut/pgut.c | 1 + bin/pgut/pgut.h | 1 + lib/Makefile | 1 + lib/pg_repack.sql.in | 1 + lib/pgut/pgut-be.c | 1 + lib/pgut/pgut-be.h | 1 + lib/pgut/pgut-spi.c | 1 + lib/pgut/pgut-spi.h | 1 + lib/repack.c | 1 + lib/uninstall_pg_repack.sql | 1 + 16 files changed, 16 insertions(+) diff --git a/COPYRIGHT b/COPYRIGHT index 9c05a6d..2b3a5e6 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,5 +1,6 @@ Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION Portions Copyright (c) 2011, Itagaki Takahiro +Portions Copyright (c) 2012, The Reorg Development Team All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/Makefile b/Makefile index d1f782d..0dad502 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,7 @@ # # Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION # Portions Copyright (c) 2011, Itagaki Takahiro +# Portions Copyright (c) 2012, The Reorg Development Team # ifndef USE_PGXS top_builddir = ../.. diff --git a/bin/Makefile b/bin/Makefile index 991e34d..2ea346d 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -3,6 +3,7 @@ # # Portions Copyright (c) 2008-2012, NIPPON TELEGRAPH AND TELEPHONE CORPORATION # Portions Copyright (c) 2011, Itagaki Takahiro +# Portions Copyright (c) 2012, The Reorg Development Team # SRCS = pg_repack.c pgut/pgut.c pgut/pgut-fe.c OBJS = $(SRCS:.c=.o) diff --git a/bin/pg_repack.c b/bin/pg_repack.c index 5766ea9..c91c3e2 100644 --- a/bin/pg_repack.c +++ b/bin/pg_repack.c @@ -3,6 +3,7 @@ * * Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION * Portions Copyright (c) 2011, Itagaki Takahiro + * Portions Copyright (c) 2012, The Reorg Development Team */ /** diff --git a/bin/pgut/pgut-fe.c b/bin/pgut/pgut-fe.c index 7136a2a..5abb5b5 100644 --- a/bin/pgut/pgut-fe.c +++ b/bin/pgut/pgut-fe.c @@ -3,6 +3,7 @@ * * Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION * Portions Copyright (c) 2011, Itagaki Takahiro + * Portions Copyright (c) 2012, The Reorg Development Team *------------------------------------------------------------------------- */ diff --git a/bin/pgut/pgut-fe.h b/bin/pgut/pgut-fe.h index 89807d7..4e3ab31 100644 --- a/bin/pgut/pgut-fe.h +++ b/bin/pgut/pgut-fe.h @@ -3,6 +3,7 @@ * * Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION * Portions Copyright (c) 2011, Itagaki Takahiro + * Portions Copyright (c) 2012, The Reorg Development Team *------------------------------------------------------------------------- */ diff --git a/bin/pgut/pgut.c b/bin/pgut/pgut.c index 5ec2bc6..dca9853 100644 --- a/bin/pgut/pgut.c +++ b/bin/pgut/pgut.c @@ -3,6 +3,7 @@ * * Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION * Portions Copyright (c) 2011, Itagaki Takahiro + * Portions Copyright (c) 2012, The Reorg Development Team *------------------------------------------------------------------------- */ diff --git a/bin/pgut/pgut.h b/bin/pgut/pgut.h index fd0d950..f5217e6 100644 --- a/bin/pgut/pgut.h +++ b/bin/pgut/pgut.h @@ -3,6 +3,7 @@ * * Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION * Portions Copyright (c) 2011, Itagaki Takahiro + * Portions Copyright (c) 2012, The Reorg Development Team *------------------------------------------------------------------------- */ diff --git a/lib/Makefile b/lib/Makefile index 705ccee..f0ce22e 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -3,6 +3,7 @@ # # Portions Copyright (c) 2008-2012, NIPPON TELEGRAPH AND TELEPHONE CORPORATION # Portions Copyright (c) 2011, Itagaki Takahiro +# Portions Copyright (c) 2012, The Reorg Development Team # MODULE_big = pg_repack OBJS = repack.o pgut/pgut-be.o pgut/pgut-spi.o diff --git a/lib/pg_repack.sql.in b/lib/pg_repack.sql.in index 0ecc441..5de238c 100644 --- a/lib/pg_repack.sql.in +++ b/lib/pg_repack.sql.in @@ -3,6 +3,7 @@ * * Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION * Portions Copyright (c) 2011, Itagaki Takahiro + * Portions Copyright (c) 2012, The Reorg Development Team */ CREATE FUNCTION repack.version() RETURNS text AS diff --git a/lib/pgut/pgut-be.c b/lib/pgut/pgut-be.c index 676f4de..8757534 100644 --- a/lib/pgut/pgut-be.c +++ b/lib/pgut/pgut-be.c @@ -3,6 +3,7 @@ * pgut-be.c * * Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION + * Portions Copyright (c) 2012, The Reorg Development Team * *------------------------------------------------------------------------- */ diff --git a/lib/pgut/pgut-be.h b/lib/pgut/pgut-be.h index 273220e..4d9c80f 100644 --- a/lib/pgut/pgut-be.h +++ b/lib/pgut/pgut-be.h @@ -3,6 +3,7 @@ * pgut-be.h * * Copyright (c) 2009-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION + * Portions Copyright (c) 2012, The Reorg Development Team * *------------------------------------------------------------------------- */ diff --git a/lib/pgut/pgut-spi.c b/lib/pgut/pgut-spi.c index daa661e..cc5f972 100644 --- a/lib/pgut/pgut-spi.c +++ b/lib/pgut/pgut-spi.c @@ -3,6 +3,7 @@ * * Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION * Portions Copyright (c) 2011, Itagaki Takahiro + * Portions Copyright (c) 2012, The Reorg Development Team *------------------------------------------------------------------------- */ diff --git a/lib/pgut/pgut-spi.h b/lib/pgut/pgut-spi.h index 99cf2d3..a1bcb11 100644 --- a/lib/pgut/pgut-spi.h +++ b/lib/pgut/pgut-spi.h @@ -3,6 +3,7 @@ * * Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION * Portions Copyright (c) 2011, Itagaki Takahiro + * Portions Copyright (c) 2012, The Reorg Development Team *------------------------------------------------------------------------- */ diff --git a/lib/repack.c b/lib/repack.c index ac1ca8b..dae6baf 100644 --- a/lib/repack.c +++ b/lib/repack.c @@ -3,6 +3,7 @@ * * Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION * Portions Copyright (c) 2011, Itagaki Takahiro + * Portions Copyright (c) 2012, The Reorg Development Team */ #include "postgres.h" diff --git a/lib/uninstall_pg_repack.sql b/lib/uninstall_pg_repack.sql index e681787..1831b8e 100644 --- a/lib/uninstall_pg_repack.sql +++ b/lib/uninstall_pg_repack.sql @@ -3,6 +3,7 @@ * * Portions Copyright (c) 2008-2011, NIPPON TELEGRAPH AND TELEPHONE CORPORATION * Portions Copyright (c) 2011, Itagaki Takahiro + * Portions Copyright (c) 2012, The Reorg Development Team */ DROP SCHEMA IF EXISTS repack CASCADE;