From 3bc136de0f4e6572df6fca1352d873ed91cb7cb3 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 With some minor fixes in the document. --- COPYRIGHT | 2 +- COPYRIGHT.postgresql | 2 +- Makefile | 2 +- SPECS/pg_hint_plan96.spec | 4 ++-- core.c | 2 +- doc/hint_list-ja.html | 2 +- doc/hint_list.html | 2 +- doc/pg_hint_plan-ja.html | 4 ++-- doc/pg_hint_plan.html | 4 ++-- make_join_rel.c | 4 ++-- normalize_query.h | 2 +- pg_hint_plan.c | 2 +- pg_stat_statements.c | 2 +- 13 files changed, 17 insertions(+), 17 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 d8cde9a..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-2016, 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 f17ce6d..5b0566d 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_plan96.spec b/SPECS/pg_hint_plan96.spec index 92dbe0c..9975962 100644 --- a/SPECS/pg_hint_plan96.spec +++ b/SPECS/pg_hint_plan96.spec @@ -1,5 +1,5 @@ -# SPEC file for pg_store_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-9.6 %define _bindir %{_pgdir}/bin diff --git a/core.c b/core.c index 5319c24..f79a9a1 100644 --- a/core.c +++ b/core.c @@ -44,7 +44,7 @@ * restriction_is_constant_false() * * - * Portions Copyright (c) 1996-2016, 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 659c871..d90909a 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 76272e2..5154ff4 100755 --- a/doc/pg_hint_plan-ja.html +++ b/doc/pg_hint_plan-ja.html @@ -675,7 +675,7 @@ postgres=#

動作環境

-pg_hint_plan 1.2 は PostgreSQL 9.6 のみをサポートします。 +pg_hint_plan96 1.2 は PostgreSQL 9.6 のみをサポートします。
PostgreSQL
バージョン 9.6
@@ -695,6 +695,6 @@ pg_hint_plan 1.2 は PostgreSQL 9.6 のみをサポートします。 pg_hint_plan - + diff --git a/doc/pg_hint_plan.html b/doc/pg_hint_plan.html index 6bb01df..c85dd01 100755 --- a/doc/pg_hint_plan.html +++ b/doc/pg_hint_plan.html @@ -482,7 +482,7 @@ from executed in parallel.

pg_stat_statements generates a query id ignoring comments. As the result the identical queires with different hints are summerized as the same query.

Requirements

-pg_hint_plan 1.2 requires PostgreSQL 9.6. +pg_hint_plan96 1.2 requires PostgreSQL 9.6.
PostgreSQL versions tested
Version 9.6
@@ -502,6 +502,6 @@ pg_hint_plan 1.2 requires PostgreSQL 9.6. pg_hint_plan - + diff --git a/make_join_rel.c b/make_join_rel.c index 1fffdaa..0fbd0e3 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-2016, 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 d197de9..4e73a13 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 4a6de90..be42391 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-2018, 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 e74ddd4..2972e4b 100644 --- a/pg_stat_statements.c +++ b/pg_stat_statements.c @@ -4,7 +4,7 @@ * * Part of pg_stat_statements.c in PostgreSQL 9.6. * - * Copyright (c) 2008-2016, PostgreSQL Global Development Group + * Copyright (c) 2008-2019, PostgreSQL Global Development Group * *------------------------------------------------------------------------- */ -- 2.11.0