From 3f87702dac6fbb856ba264031359218a9f0fbeb0 Mon Sep 17 00:00:00 2001 From: Kyotaro Horiguchi Date: Thu, 17 Jan 2019 12:11:17 +0900 Subject: [PATCH] Change copyright year to 2019 --- COPYRIGHT | 2 +- COPYRIGHT.postgresql | 2 +- Makefile | 2 +- SPECS/pg_hint_plan10.spec | 6 +++--- core.c | 2 +- doc/hint_list-ja.html | 2 +- doc/hint_list.html | 2 +- doc/pg_hint_plan-ja.html | 2 +- doc/pg_hint_plan.html | 2 +- make_join_rel.c | 4 ++-- normalize_query.h | 2 +- pg_hint_plan.c | 2 +- pg_stat_statements.c | 2 +- 13 files changed, 16 insertions(+), 16 deletions(-) diff --git a/COPYRIGHT b/COPYRIGHT index 631bdc8..2778cb9 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,4 +1,4 @@ -Copyright (c) 2012-2018, NIPPON TELEGRAPH AND TELEPHONE CORPORATION +Copyright (c) 2012-2019, NIPPON TELEGRAPH AND TELEPHONE CORPORATION All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/COPYRIGHT.postgresql b/COPYRIGHT.postgresql index 9ca2620..b10da58 100644 --- a/COPYRIGHT.postgresql +++ b/COPYRIGHT.postgresql @@ -2,7 +2,7 @@ core.c and make_join_rel.c are parts of PostgreSQL Database Management System. (formerly known as Postgres, then as Postgres95) Copyright holders of those files are following organizations: -Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group +Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group Portions Copyright (c) 1994, The Regents of the University of California diff --git a/Makefile b/Makefile index 64bacf5..da76369 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # # pg_hint_plan: Makefile # -# Copyright (c) 2012-2018, NIPPON TELEGRAPH AND TELEPHONE CORPORATION +# Copyright (c) 2012-2019, NIPPON TELEGRAPH AND TELEPHONE CORPORATION # MODULES = pg_hint_plan diff --git a/SPECS/pg_hint_plan10.spec b/SPECS/pg_hint_plan10.spec index b7d4774..5586121 100644 --- a/SPECS/pg_hint_plan10.spec +++ b/SPECS/pg_hint_plan10.spec @@ -1,5 +1,5 @@ -# SPEC file for pg_hint_plans -# Copyright(C) 2018 NIPPON TELEGRAPH AND TELEPHONE CORPORATION +# SPEC file for pg_hint_plan +# Copyright(C) 2019 NIPPON TELEGRAPH AND TELEPHONE CORPORATION %define _pgdir /usr/pgsql-10 %define _bindir %{_pgdir}/bin @@ -11,7 +11,7 @@ %define _sourcedir %(echo ${MAKE_ROOT}) %endif -## Set general information for pg_store_plans. +## Set general information for pg_hint_plan. Summary: Optimizer hint on PostgreSQL 10 Name: pg_hint_plan10 Version: 1.3.2 diff --git a/core.c b/core.c index 4ca915d..48c9410 100644 --- a/core.c +++ b/core.c @@ -45,7 +45,7 @@ * restriction_is_constant_false() * * - * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * *------------------------------------------------------------------------- diff --git a/doc/hint_list-ja.html b/doc/hint_list-ja.html index 456e7a1..548533b 100755 --- a/doc/hint_list-ja.html +++ b/doc/hint_list-ja.html @@ -108,6 +108,6 @@ PostgreSQL 9.2以降で動作します。 Appendix A. ヒント句一覧 - + diff --git a/doc/hint_list.html b/doc/hint_list.html index 8dc3bbc..512ec50 100755 --- a/doc/hint_list.html +++ b/doc/hint_list.html @@ -88,6 +88,6 @@ Appendix A. hints list - + diff --git a/doc/pg_hint_plan-ja.html b/doc/pg_hint_plan-ja.html index 3f1d119..bb1bd67 100755 --- a/doc/pg_hint_plan-ja.html +++ b/doc/pg_hint_plan-ja.html @@ -695,6 +695,6 @@ pg_hint_plan 1.3 は PostgreSQL 10 のみをサポートします。 pg_hint_plan - + diff --git a/doc/pg_hint_plan.html b/doc/pg_hint_plan.html index 404a176..9ce7a9a 100755 --- a/doc/pg_hint_plan.html +++ b/doc/pg_hint_plan.html @@ -502,6 +502,6 @@ pg_hint_plan 1.3 requires PostgreSQL 10. pg_hint_plan - + diff --git a/make_join_rel.c b/make_join_rel.c index 3763bf4..8858d4a 100644 --- a/make_join_rel.c +++ b/make_join_rel.c @@ -7,8 +7,8 @@ * src/backend/optimizer/path/joinrels.c * make_join_rel() * - * Portions Copyright (c) 2013-2018, NIPPON TELEGRAPH AND TELEPHONE CORPORATION - * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group + * Portions Copyright (c) 2013-2019, NIPPON TELEGRAPH AND TELEPHONE CORPORATION + * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * *------------------------------------------------------------------------- diff --git a/normalize_query.h b/normalize_query.h index fab1e6b..9929056 100644 --- a/normalize_query.h +++ b/normalize_query.h @@ -6,7 +6,7 @@ * This header file is created from pg_stat_statements.c to implement * normalization of query string. * - * Portions Copyright (c) 2008-2017, PostgreSQL Global Development Group + * Portions Copyright (c) 2008-2019, PostgreSQL Global Development Group */ #ifndef NORMALIZE_QUERY_H #define NORMALIZE_QUERY_H diff --git a/pg_hint_plan.c b/pg_hint_plan.c index 0d6325c..f70d7a4 100644 --- a/pg_hint_plan.c +++ b/pg_hint_plan.c @@ -3,7 +3,7 @@ * pg_hint_plan.c * hinting on how to execute a query for PostgreSQL * - * Copyright (c) 2012-2017, NIPPON TELEGRAPH AND TELEPHONE CORPORATION + * Copyright (c) 2012-2019, NIPPON TELEGRAPH AND TELEPHONE CORPORATION * *------------------------------------------------------------------------- */ diff --git a/pg_stat_statements.c b/pg_stat_statements.c index 8f74903..b8c6ef8 100644 --- a/pg_stat_statements.c +++ b/pg_stat_statements.c @@ -4,7 +4,7 @@ * * Part of pg_stat_statements.c in PostgreSQL 10. * - * Copyright (c) 2008-2017, PostgreSQL Global Development Group + * Copyright (c) 2008-2019, PostgreSQL Global Development Group * *------------------------------------------------------------------------- */ -- 2.11.0