diff --git a/contrib/dblink/dblink.c b/contrib/dblink/dblink.c index 1841284917..5de1514459 100644 --- a/contrib/dblink/dblink.c +++ b/contrib/dblink/dblink.c @@ -8,7 +8,7 @@ * Darko Prenosil * Shridhar Daithankar * - * Copyright (c) 2001-2004, PostgreSQL Global Development Group + * Copyright (c) 2001-2005, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * * Permission to use, copy, modify, and distribute this software and its diff --git a/contrib/dblink/dblink.h b/contrib/dblink/dblink.h index 4652306e54..63d6d525db 100644 --- a/contrib/dblink/dblink.h +++ b/contrib/dblink/dblink.h @@ -8,7 +8,7 @@ * Darko Prenosil * Shridhar Daithankar * - * Copyright (c) 2001-2004, PostgreSQL Global Development Group + * Copyright (c) 2001-2005, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * * Permission to use, copy, modify, and distribute this software and its diff --git a/contrib/dbsize/dbsize.c b/contrib/dbsize/dbsize.c index e332a62f86..f6ed57d463 100644 --- a/contrib/dbsize/dbsize.c +++ b/contrib/dbsize/dbsize.c @@ -2,10 +2,10 @@ * dbsize.c * object size functions * - * Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Copyright (c) 2002-2005, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/contrib/dbsize/dbsize.c,v 1.15 2004/09/28 19:35:43 tgl Exp $ + * $PostgreSQL: pgsql/contrib/dbsize/dbsize.c,v 1.16 2005/01/01 05:43:05 momjian Exp $ * */ diff --git a/contrib/findoidjoins/findoidjoins.c b/contrib/findoidjoins/findoidjoins.c index a1b09b8cbe..3afcd7c3c3 100644 --- a/contrib/findoidjoins/findoidjoins.c +++ b/contrib/findoidjoins/findoidjoins.c @@ -1,9 +1,9 @@ /* * findoidjoins.c * - * Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Copyright (c) 2002-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/contrib/findoidjoins/findoidjoins.c,v 1.24 2004/08/29 04:12:16 momjian Exp $ + * $PostgreSQL: pgsql/contrib/findoidjoins/findoidjoins.c,v 1.25 2005/01/01 05:43:05 momjian Exp $ */ #include "postgres_fe.h" diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.c b/contrib/fuzzystrmatch/fuzzystrmatch.c index aa89c932c7..d3627097cf 100644 --- a/contrib/fuzzystrmatch/fuzzystrmatch.c +++ b/contrib/fuzzystrmatch/fuzzystrmatch.c @@ -5,7 +5,7 @@ * * Joe Conway * - * Copyright (c) 2001-2004, PostgreSQL Global Development Group + * Copyright (c) 2001-2005, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * * levenshtein() diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.h b/contrib/fuzzystrmatch/fuzzystrmatch.h index 8590163eee..05c2022aec 100644 --- a/contrib/fuzzystrmatch/fuzzystrmatch.h +++ b/contrib/fuzzystrmatch/fuzzystrmatch.h @@ -5,7 +5,7 @@ * * Joe Conway * - * Copyright (c) 2001-2004, PostgreSQL Global Development Group + * Copyright (c) 2001-2005, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * * levenshtein() diff --git a/contrib/tablefunc/tablefunc.c b/contrib/tablefunc/tablefunc.c index a4c7fb8f16..c364fc6595 100644 --- a/contrib/tablefunc/tablefunc.c +++ b/contrib/tablefunc/tablefunc.c @@ -7,7 +7,7 @@ * And contributors: * Nabil Sayegh * - * Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Copyright (c) 2002-2005, PostgreSQL Global Development Group * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose, without fee, and without a written agreement diff --git a/contrib/tablefunc/tablefunc.h b/contrib/tablefunc/tablefunc.h index 04118a95b0..f7a23fccd5 100644 --- a/contrib/tablefunc/tablefunc.h +++ b/contrib/tablefunc/tablefunc.h @@ -7,7 +7,7 @@ * And contributors: * Nabil Sayegh * - * Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Copyright (c) 2002-2005, PostgreSQL Global Development Group * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose, without fee, and without a written agreement diff --git a/src/backend/access/heap/tuptoaster.c b/src/backend/access/heap/tuptoaster.c index 0aa590a99e..c06b3b8d36 100644 --- a/src/backend/access/heap/tuptoaster.c +++ b/src/backend/access/heap/tuptoaster.c @@ -4,11 +4,11 @@ * Support routines for external and compressed storage of * variable size attributes. * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/heap/tuptoaster.c,v 1.46 2004/09/30 23:21:06 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/heap/tuptoaster.c,v 1.47 2005/01/01 05:43:06 momjian Exp $ * * * INTERFACE ROUTINES diff --git a/src/backend/access/transam/varsup.c b/src/backend/access/transam/varsup.c index 84926ac415..bc49bf0ba7 100644 --- a/src/backend/access/transam/varsup.c +++ b/src/backend/access/transam/varsup.c @@ -3,10 +3,10 @@ * varsup.c * postgres OID & XID variables support routines * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/transam/varsup.c,v 1.59 2004/08/29 05:06:40 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/varsup.c,v 1.60 2005/01/01 05:43:06 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/commands/prepare.c b/src/backend/commands/prepare.c index 66fa15c37a..2a6cbd77f0 100644 --- a/src/backend/commands/prepare.c +++ b/src/backend/commands/prepare.c @@ -7,10 +7,10 @@ * accessed via the extended FE/BE query protocol. * * - * Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Copyright (c) 2002-2005, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/prepare.c,v 1.35 2004/12/12 20:17:06 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/commands/prepare.c,v 1.36 2005/01/01 05:43:06 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/executor/instrument.c b/src/backend/executor/instrument.c index ac4d7b374c..381e6ae4ef 100644 --- a/src/backend/executor/instrument.c +++ b/src/backend/executor/instrument.c @@ -4,10 +4,10 @@ * functions for instrumentation of plan execution * * - * Copyright (c) 2001-2004, PostgreSQL Global Development Group + * Copyright (c) 2001-2005, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/instrument.c,v 1.8 2004/08/29 04:12:31 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/executor/instrument.c,v 1.9 2005/01/01 05:43:06 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c index 9ba0594e28..9d418f9cd4 100644 --- a/src/backend/postmaster/pgstat.c +++ b/src/backend/postmaster/pgstat.c @@ -11,9 +11,9 @@ * - Add a pgstat config column to pg_database, so this * entire thing can be enabled/disabled on a per db basis. * - * Copyright (c) 2001-2004, PostgreSQL Global Development Group + * Copyright (c) 2001-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.86 2004/12/20 19:17:56 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.87 2005/01/01 05:43:07 momjian Exp $ * ---------- */ #include "postgres.h" diff --git a/src/backend/utils/adt/ascii.c b/src/backend/utils/adt/ascii.c index 2b915c4ad0..4eebf65c2b 100644 --- a/src/backend/utils/adt/ascii.c +++ b/src/backend/utils/adt/ascii.c @@ -2,10 +2,10 @@ * ascii.c * The PostgreSQL routine for string to ascii conversion. * - * Portions Copyright (c) 1999-2004, PostgreSQL Global Development Group + * Portions Copyright (c) 1999-2005, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/ascii.c,v 1.23 2004/12/20 19:00:37 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/ascii.c,v 1.24 2005/01/01 05:43:07 momjian Exp $ * *----------------------------------------------------------------------- */ diff --git a/src/backend/utils/adt/encode.c b/src/backend/utils/adt/encode.c index 4040cb55b9..90268aed96 100644 --- a/src/backend/utils/adt/encode.c +++ b/src/backend/utils/adt/encode.c @@ -3,11 +3,11 @@ * encode.c * Various data encoding/decoding things. * - * Copyright (c) 2001-2004, PostgreSQL Global Development Group + * Copyright (c) 2001-2005, PostgreSQL Global Development Group * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/encode.c,v 1.13 2004/08/29 05:06:49 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/encode.c,v 1.14 2005/01/01 05:43:07 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/utils/adt/formatting.c b/src/backend/utils/adt/formatting.c index b345fe45e1..b2d9c2888d 100644 --- a/src/backend/utils/adt/formatting.c +++ b/src/backend/utils/adt/formatting.c @@ -1,10 +1,10 @@ /* ----------------------------------------------------------------------- * formatting.c * - * $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.82 2004/11/20 02:09:47 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/formatting.c,v 1.83 2005/01/01 05:43:07 momjian Exp $ * * - * Portions Copyright (c) 1999-2004, PostgreSQL Global Development Group + * Portions Copyright (c) 1999-2005, PostgreSQL Global Development Group * * * TO_CHAR(); TO_TIMESTAMP(); TO_DATE(); TO_NUMBER(); diff --git a/src/backend/utils/adt/lockfuncs.c b/src/backend/utils/adt/lockfuncs.c index 5bab8d8993..e6e14647da 100644 --- a/src/backend/utils/adt/lockfuncs.c +++ b/src/backend/utils/adt/lockfuncs.c @@ -3,10 +3,10 @@ * lockfuncs.c * Set-returning functions to view the state of locks within the DB. * - * Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Copyright (c) 2002-2005, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/lockfuncs.c,v 1.15 2004/08/29 04:12:51 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/lockfuncs.c,v 1.16 2005/01/01 05:43:07 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/utils/adt/numeric.c b/src/backend/utils/adt/numeric.c index f99fb89715..411891e269 100644 --- a/src/backend/utils/adt/numeric.c +++ b/src/backend/utils/adt/numeric.c @@ -11,10 +11,10 @@ * Transactions on Mathematical Software, Vol. 24, No. 4, December 1998, * pages 359-367. * - * Copyright (c) 1998-2004, PostgreSQL Global Development Group + * Copyright (c) 1998-2005, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/numeric.c,v 1.80 2004/10/04 14:42:46 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/numeric.c,v 1.81 2005/01/01 05:43:07 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/utils/adt/pg_locale.c b/src/backend/utils/adt/pg_locale.c index fe48514682..5b8d8e8810 100644 --- a/src/backend/utils/adt/pg_locale.c +++ b/src/backend/utils/adt/pg_locale.c @@ -2,9 +2,9 @@ * * PostgreSQL locale utilities * - * Portions Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Portions Copyright (c) 2002-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/backend/utils/adt/pg_locale.c,v 1.29 2004/10/17 20:02:26 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/pg_locale.c,v 1.30 2005/01/01 05:43:07 momjian Exp $ * *----------------------------------------------------------------------- */ diff --git a/src/backend/utils/adt/quote.c b/src/backend/utils/adt/quote.c index c300e66d52..7065a1f2e5 100644 --- a/src/backend/utils/adt/quote.c +++ b/src/backend/utils/adt/quote.c @@ -3,11 +3,11 @@ * quote.c * Functions for quoting identifiers and literals * - * Portions Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Portions Copyright (c) 2000-2005, PostgreSQL Global Development Group * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/quote.c,v 1.13 2004/08/29 04:12:52 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/quote.c,v 1.14 2005/01/01 05:43:07 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/utils/fmgr/funcapi.c b/src/backend/utils/fmgr/funcapi.c index 28063768f2..2c3845b7bf 100644 --- a/src/backend/utils/fmgr/funcapi.c +++ b/src/backend/utils/fmgr/funcapi.c @@ -4,10 +4,10 @@ * Utility and convenience functions for fmgr functions that return * sets and/or composite types. * - * Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Copyright (c) 2002-2005, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/fmgr/funcapi.c,v 1.17 2004/08/29 05:06:50 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/fmgr/funcapi.c,v 1.18 2005/01/01 05:43:08 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/utils/misc/guc-file.l b/src/backend/utils/misc/guc-file.l index b6971cedab..60a42232a6 100644 --- a/src/backend/utils/misc/guc-file.l +++ b/src/backend/utils/misc/guc-file.l @@ -2,9 +2,9 @@ /* * Scanner for the configuration file * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/backend/utils/misc/guc-file.l,v 1.28 2004/11/12 00:08:23 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/guc-file.l,v 1.29 2005/01/01 05:43:08 momjian Exp $ */ %{ diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 3ba1a143c0..053bd2af3f 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -6,11 +6,11 @@ * See src/backend/utils/misc/README for more information. * * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * Written by Peter Eisentraut . * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.251 2004/12/20 18:15:07 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.252 2005/01/01 05:43:08 momjian Exp $ * *-------------------------------------------------------------------- */ diff --git a/src/backend/utils/misc/ps_status.c b/src/backend/utils/misc/ps_status.c index 8b3288cf5e..4cecf446ae 100644 --- a/src/backend/utils/misc/ps_status.c +++ b/src/backend/utils/misc/ps_status.c @@ -5,9 +5,9 @@ * to contain some useful information. Mechanism differs wildly across * platforms. * - * $PostgreSQL: pgsql/src/backend/utils/misc/ps_status.c,v 1.22 2004/12/02 22:28:22 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/ps_status.c,v 1.23 2005/01/01 05:43:08 momjian Exp $ * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * various details abducted from various places *-------------------------------------------------------------------- */ diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 6388f20dd7..4edacb2885 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.138 2004/12/19 19:39:47 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.139 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" #include "command.h" diff --git a/src/bin/psql/command.h b/src/bin/psql/command.h index 8149d93396..ffb47f8520 100644 --- a/src/bin/psql/command.h +++ b/src/bin/psql/command.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/command.h,v 1.21 2004/08/29 05:06:54 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/command.h,v 1.22 2005/01/01 05:43:08 momjian Exp $ */ #ifndef COMMAND_H #define COMMAND_H diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 44278aa926..1c26eb6b84 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.94 2004/11/01 19:21:50 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.95 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" diff --git a/src/bin/psql/common.h b/src/bin/psql/common.h index 1f2de0a4f0..2758165c9b 100644 --- a/src/bin/psql/common.h +++ b/src/bin/psql/common.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.41 2004/11/01 19:21:50 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.42 2005/01/01 05:43:08 momjian Exp $ */ #ifndef COMMON_H #define COMMON_H diff --git a/src/bin/psql/copy.c b/src/bin/psql/copy.c index bf7aad15d4..9b6d914445 100644 --- a/src/bin/psql/copy.c +++ b/src/bin/psql/copy.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/copy.c,v 1.54 2004/08/29 05:06:54 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/copy.c,v 1.55 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" #include "copy.h" diff --git a/src/bin/psql/copy.h b/src/bin/psql/copy.h index 91cc94b2bc..53af1edb3c 100644 --- a/src/bin/psql/copy.h +++ b/src/bin/psql/copy.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/copy.h,v 1.16 2004/08/29 04:13:02 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/copy.h,v 1.17 2005/01/01 05:43:08 momjian Exp $ */ #ifndef COPY_H #define COPY_H diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index e5b28e9d58..8bf21bcc7c 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.110 2004/11/09 14:39:43 petere Exp $ + * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.111 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" #include "describe.h" diff --git a/src/bin/psql/describe.h b/src/bin/psql/describe.h index 9ce67dbb24..170682965d 100644 --- a/src/bin/psql/describe.h +++ b/src/bin/psql/describe.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/describe.h,v 1.27 2004/08/29 04:13:02 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/describe.h,v 1.28 2005/01/01 05:43:08 momjian Exp $ */ #ifndef DESCRIBE_H #define DESCRIBE_H diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 0e4479e4c3..2033a4bd86 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.98 2004/12/31 22:03:15 pgsql Exp $ + * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.99 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" diff --git a/src/bin/psql/help.h b/src/bin/psql/help.h index 375c9a0c65..2e09e92b35 100644 --- a/src/bin/psql/help.h +++ b/src/bin/psql/help.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/help.h,v 1.15 2004/08/29 04:13:02 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/help.h,v 1.16 2005/01/01 05:43:08 momjian Exp $ */ #ifndef HELP_H #define HELP_H diff --git a/src/bin/psql/input.c b/src/bin/psql/input.c index 72001324f7..b216e98843 100644 --- a/src/bin/psql/input.c +++ b/src/bin/psql/input.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.41 2004/10/12 21:54:44 petere Exp $ + * $PostgreSQL: pgsql/src/bin/psql/input.c,v 1.42 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" #include "input.h" diff --git a/src/bin/psql/input.h b/src/bin/psql/input.h index 88f91dac7c..bddc174b12 100644 --- a/src/bin/psql/input.h +++ b/src/bin/psql/input.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/input.h,v 1.22 2004/08/29 04:13:02 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/input.h,v 1.23 2005/01/01 05:43:08 momjian Exp $ */ #ifndef INPUT_H #define INPUT_H diff --git a/src/bin/psql/large_obj.c b/src/bin/psql/large_obj.c index 7c9b560963..2b2a730f5b 100644 --- a/src/bin/psql/large_obj.c +++ b/src/bin/psql/large_obj.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/large_obj.c,v 1.34 2004/09/10 04:10:53 neilc Exp $ + * $PostgreSQL: pgsql/src/bin/psql/large_obj.c,v 1.35 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" #include "large_obj.h" diff --git a/src/bin/psql/large_obj.h b/src/bin/psql/large_obj.h index e76c793eee..25c6d118bb 100644 --- a/src/bin/psql/large_obj.h +++ b/src/bin/psql/large_obj.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/large_obj.h,v 1.14 2004/08/29 04:13:02 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/large_obj.h,v 1.15 2005/01/01 05:43:08 momjian Exp $ */ #ifndef LARGE_OBJ_H #define LARGE_OBJ_H diff --git a/src/bin/psql/mainloop.c b/src/bin/psql/mainloop.c index d9f3395b1a..109f23192f 100644 --- a/src/bin/psql/mainloop.c +++ b/src/bin/psql/mainloop.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/mainloop.c,v 1.65 2004/10/30 23:10:50 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/mainloop.c,v 1.66 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" #include "mainloop.h" diff --git a/src/bin/psql/mainloop.h b/src/bin/psql/mainloop.h index 0509c78c53..b70bc7cd36 100644 --- a/src/bin/psql/mainloop.h +++ b/src/bin/psql/mainloop.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/mainloop.h,v 1.16 2004/08/29 04:13:02 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/mainloop.h,v 1.17 2005/01/01 05:43:08 momjian Exp $ */ #ifndef MAINLOOP_H #define MAINLOOP_H diff --git a/src/bin/psql/mbprint.c b/src/bin/psql/mbprint.c index 78cbdcdf6d..27ee3f840f 100644 --- a/src/bin/psql/mbprint.c +++ b/src/bin/psql/mbprint.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/mbprint.c,v 1.15 2004/09/27 19:16:02 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/mbprint.c,v 1.16 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c index 1676b8b1cc..abf6864943 100644 --- a/src/bin/psql/print.c +++ b/src/bin/psql/print.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.53 2004/11/09 15:57:53 petere Exp $ + * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.54 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" diff --git a/src/bin/psql/print.h b/src/bin/psql/print.h index 12d2d5a743..b30d302883 100644 --- a/src/bin/psql/print.h +++ b/src/bin/psql/print.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/print.h,v 1.21 2004/08/29 04:13:02 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/print.h,v 1.22 2005/01/01 05:43:08 momjian Exp $ */ #ifndef PRINT_H #define PRINT_H diff --git a/src/bin/psql/prompt.c b/src/bin/psql/prompt.c index 909adb37b1..9e443cb126 100644 --- a/src/bin/psql/prompt.c +++ b/src/bin/psql/prompt.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/prompt.c,v 1.37 2004/08/29 05:06:54 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/prompt.c,v 1.38 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" #include "prompt.h" diff --git a/src/bin/psql/prompt.h b/src/bin/psql/prompt.h index a2412c3250..c5416cda2b 100644 --- a/src/bin/psql/prompt.h +++ b/src/bin/psql/prompt.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/prompt.h,v 1.15 2004/08/29 04:13:02 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/prompt.h,v 1.16 2005/01/01 05:43:08 momjian Exp $ */ #ifndef PROMPT_H #define PROMPT_H diff --git a/src/bin/psql/psqlscan.h b/src/bin/psql/psqlscan.h index 7b506a5a11..17aa0d6fad 100644 --- a/src/bin/psql/psqlscan.h +++ b/src/bin/psql/psqlscan.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/psqlscan.h,v 1.4 2004/12/19 19:39:47 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/psqlscan.h,v 1.5 2005/01/01 05:43:08 momjian Exp $ */ #ifndef PSQLSCAN_H #define PSQLSCAN_H diff --git a/src/bin/psql/settings.h b/src/bin/psql/settings.h index 87855b5051..a2b67905d2 100644 --- a/src/bin/psql/settings.h +++ b/src/bin/psql/settings.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/settings.h,v 1.22 2004/11/17 18:32:31 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/settings.h,v 1.23 2005/01/01 05:43:08 momjian Exp $ */ #ifndef SETTINGS_H #define SETTINGS_H diff --git a/src/bin/psql/startup.c b/src/bin/psql/startup.c index 4def5ccb94..e9ea17dc89 100644 --- a/src/bin/psql/startup.c +++ b/src/bin/psql/startup.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.107 2004/12/28 23:17:41 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.108 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" diff --git a/src/bin/psql/stringutils.c b/src/bin/psql/stringutils.c index 1506260f5c..0087b1a623 100644 --- a/src/bin/psql/stringutils.c +++ b/src/bin/psql/stringutils.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/stringutils.c,v 1.39 2004/08/29 04:13:02 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/stringutils.c,v 1.40 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" diff --git a/src/bin/psql/stringutils.h b/src/bin/psql/stringutils.h index 9137532fba..6bfde6beae 100644 --- a/src/bin/psql/stringutils.h +++ b/src/bin/psql/stringutils.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/stringutils.h,v 1.21 2004/08/29 04:13:02 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/stringutils.h,v 1.22 2005/01/01 05:43:08 momjian Exp $ */ #ifndef STRINGUTILS_H #define STRINGUTILS_H diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 8ebed5a3b7..1f2796ffd6 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.119 2004/12/24 15:42:05 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.120 2005/01/01 05:43:08 momjian Exp $ */ /*---------------------------------------------------------------------- diff --git a/src/bin/psql/tab-complete.h b/src/bin/psql/tab-complete.h index 1305e5437d..27ef018e0a 100644 --- a/src/bin/psql/tab-complete.h +++ b/src/bin/psql/tab-complete.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/tab-complete.h,v 1.11 2004/08/29 04:13:03 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/tab-complete.h,v 1.12 2005/01/01 05:43:08 momjian Exp $ */ #ifndef TAB_COMPLETE_H #define TAB_COMPLETE_H diff --git a/src/bin/psql/variables.c b/src/bin/psql/variables.c index 2e0ac69dbd..9763c2a9b2 100644 --- a/src/bin/psql/variables.c +++ b/src/bin/psql/variables.c @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/variables.c,v 1.20 2004/10/18 16:24:38 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/variables.c,v 1.21 2005/01/01 05:43:08 momjian Exp $ */ #include "postgres_fe.h" #include "common.h" diff --git a/src/bin/psql/variables.h b/src/bin/psql/variables.h index ec3cc69d34..4e1ecea55d 100644 --- a/src/bin/psql/variables.h +++ b/src/bin/psql/variables.h @@ -1,9 +1,9 @@ /* * psql - the PostgreSQL interactive terminal * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/variables.h,v 1.16 2004/08/29 04:13:03 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/variables.h,v 1.17 2005/01/01 05:43:08 momjian Exp $ */ /* diff --git a/src/bin/scripts/clusterdb.c b/src/bin/scripts/clusterdb.c index 857b56bb72..4b5bc6f15f 100644 --- a/src/bin/scripts/clusterdb.c +++ b/src/bin/scripts/clusterdb.c @@ -2,9 +2,9 @@ * * clusterdb * - * Portions Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Portions Copyright (c) 2002-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/scripts/clusterdb.c,v 1.11 2004/08/29 05:06:54 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/scripts/clusterdb.c,v 1.12 2005/01/01 05:43:08 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/tuptoaster.h b/src/include/access/tuptoaster.h index dcc4e4db5f..421b5a00ac 100644 --- a/src/include/access/tuptoaster.h +++ b/src/include/access/tuptoaster.h @@ -4,9 +4,9 @@ * POSTGRES definitions for external and compressed storage * of variable size attributes. * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/access/tuptoaster.h,v 1.20 2004/08/29 05:06:55 momjian Exp $ + * $PostgreSQL: pgsql/src/include/access/tuptoaster.h,v 1.21 2005/01/01 05:43:09 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/catalog/pg_cast.h b/src/include/catalog/pg_cast.h index df341ec15a..ce496a37c2 100644 --- a/src/include/catalog/pg_cast.h +++ b/src/include/catalog/pg_cast.h @@ -8,9 +8,9 @@ * but also length coercion functions. * * - * Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Copyright (c) 2002-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/catalog/pg_cast.h,v 1.16 2004/10/04 22:49:54 tgl Exp $ + * $PostgreSQL: pgsql/src/include/catalog/pg_cast.h,v 1.17 2005/01/01 05:43:09 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/commands/comment.h b/src/include/commands/comment.h index 2835dc876f..b27113e3ca 100644 --- a/src/include/commands/comment.h +++ b/src/include/commands/comment.h @@ -4,7 +4,7 @@ * * Prototypes for functions in commands/comment.c * - * Copyright (c) 1999-2004, PostgreSQL Global Development Group + * Copyright (c) 1999-2005, PostgreSQL Global Development Group * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/prepare.h b/src/include/commands/prepare.h index d208d14845..4a8cde5235 100644 --- a/src/include/commands/prepare.h +++ b/src/include/commands/prepare.h @@ -4,9 +4,9 @@ * PREPARE, EXECUTE and DEALLOCATE commands, and prepared-stmt storage * * - * Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Copyright (c) 2002-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/commands/prepare.h,v 1.12 2004/08/29 05:06:56 momjian Exp $ + * $PostgreSQL: pgsql/src/include/commands/prepare.h,v 1.13 2005/01/01 05:43:09 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/instrument.h b/src/include/executor/instrument.h index 79b0ece4a8..754655c1fd 100644 --- a/src/include/executor/instrument.h +++ b/src/include/executor/instrument.h @@ -4,9 +4,9 @@ * definitions for run-time statistics collection * * - * Copyright (c) 2001-2004, PostgreSQL Global Development Group + * Copyright (c) 2001-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/executor/instrument.h,v 1.7 2004/08/29 04:13:06 momjian Exp $ + * $PostgreSQL: pgsql/src/include/executor/instrument.h,v 1.8 2005/01/01 05:43:09 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/funcapi.h b/src/include/funcapi.h index f51d84aa75..00549897d5 100644 --- a/src/include/funcapi.h +++ b/src/include/funcapi.h @@ -7,9 +7,9 @@ * or call FUNCAPI-callable functions or macros. * * - * Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Copyright (c) 2002-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/funcapi.h,v 1.14 2004/08/29 05:06:55 momjian Exp $ + * $PostgreSQL: pgsql/src/include/funcapi.h,v 1.15 2005/01/01 05:43:08 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/pgstat.h b/src/include/pgstat.h index 3b84ee0061..31e01e4ed4 100644 --- a/src/include/pgstat.h +++ b/src/include/pgstat.h @@ -3,9 +3,9 @@ * * Definitions for the PostgreSQL statistics collector daemon. * - * Copyright (c) 2001-2004, PostgreSQL Global Development Group + * Copyright (c) 2001-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/pgstat.h,v 1.26 2004/08/29 04:13:03 momjian Exp $ + * $PostgreSQL: pgsql/src/include/pgstat.h,v 1.27 2005/01/01 05:43:08 momjian Exp $ * ---------- */ #ifndef PGSTAT_H diff --git a/src/include/utils/ascii.h b/src/include/utils/ascii.h index cf3c6cf447..bfc90c3800 100644 --- a/src/include/utils/ascii.h +++ b/src/include/utils/ascii.h @@ -1,9 +1,9 @@ /*----------------------------------------------------------------------- * ascii.h * - * Portions Copyright (c) 1999-2004, PostgreSQL Global Development Group + * Portions Copyright (c) 1999-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/utils/ascii.h,v 1.12 2004/08/29 04:13:10 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/ascii.h,v 1.13 2005/01/01 05:43:09 momjian Exp $ * *----------------------------------------------------------------------- */ diff --git a/src/include/utils/formatting.h b/src/include/utils/formatting.h index 4a8d407d0f..c6d32f8dc2 100644 --- a/src/include/utils/formatting.h +++ b/src/include/utils/formatting.h @@ -2,10 +2,10 @@ /* ----------------------------------------------------------------------- * formatting.h * - * $PostgreSQL: pgsql/src/include/utils/formatting.h,v 1.14 2004/08/29 04:13:11 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/formatting.h,v 1.15 2005/01/01 05:43:09 momjian Exp $ * * - * Portions Copyright (c) 1999-2004, PostgreSQL Global Development Group + * Portions Copyright (c) 1999-2005, PostgreSQL Global Development Group * * The PostgreSQL routines for a DateTime/int/float/numeric formatting, * inspire with Oracle TO_CHAR() / TO_DATE() / TO_NUMBER() routines. diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h index 786d696620..c3473e2fc3 100644 --- a/src/include/utils/guc.h +++ b/src/include/utils/guc.h @@ -4,10 +4,10 @@ * External declarations pertaining to backend/utils/misc/guc.c and * backend/utils/misc/guc-file.l * - * Copyright (c) 2000-2004, PostgreSQL Global Development Group + * Copyright (c) 2000-2005, PostgreSQL Global Development Group * Written by Peter Eisentraut . * - * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.57 2004/11/24 19:51:05 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.58 2005/01/01 05:43:09 momjian Exp $ *-------------------------------------------------------------------- */ #ifndef GUC_H diff --git a/src/include/utils/numeric.h b/src/include/utils/numeric.h index 64c1c61d53..7e6a0c8a74 100644 --- a/src/include/utils/numeric.h +++ b/src/include/utils/numeric.h @@ -5,9 +5,9 @@ * * Original coding 1998, Jan Wieck. Heavily revised 2003, Tom Lane. * - * Copyright (c) 1998-2004, PostgreSQL Global Development Group + * Copyright (c) 1998-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/utils/numeric.h,v 1.19 2004/08/29 04:13:11 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/numeric.h,v 1.20 2005/01/01 05:43:09 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/pg_locale.h b/src/include/utils/pg_locale.h index d41d05af6f..6be1df3ab1 100644 --- a/src/include/utils/pg_locale.h +++ b/src/include/utils/pg_locale.h @@ -2,9 +2,9 @@ * * PostgreSQL locale utilities * - * $PostgreSQL: pgsql/src/include/utils/pg_locale.h,v 1.18 2004/08/29 04:13:11 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/pg_locale.h,v 1.19 2005/01/01 05:43:09 momjian Exp $ * - * Copyright (c) 2002-2004, PostgreSQL Global Development Group + * Copyright (c) 2002-2005, PostgreSQL Global Development Group * *----------------------------------------------------------------------- */ diff --git a/src/tools/copyright b/src/tools/copyright index 47ba92535a..393d9dfd9f 100755 --- a/src/tools/copyright +++ b/src/tools/copyright @@ -1,6 +1,6 @@ rgrepc -l 'Copyright.*PostgreSQL Global Development Group' | while read FILE do - pipe sed 's/^\(.*Copyright (c) [12][0-9][0-9][0-9]-\)[12][0-9][0-9][0-9]\(, PostgreSQL Global Development Group.*\)$/\12004\2/' $FILE + pipe sed 's/^\(.*Copyright (c) [12][0-9][0-9][0-9]-\)[12][0-9][0-9][0-9]\(, PostgreSQL Global Development Group.*\)$/\12005\2/' $FILE done echo "Manually update doc/src/sgml/legal.sgml too" 1>&2