diff options
| author | Bruce Momjian | 2008-01-01 19:46:01 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2008-01-01 19:46:01 +0000 |
| commit | 9098ab9e327c2e6b0fece9e550d7d93663c60ff5 (patch) | |
| tree | b2228b5b8f5c6a2f019e5647ba8cf2b5425fc8fc /src/backend/nodes | |
| parent | 44ede1072dfcdd4291225b55439a549c8a6cc2b7 (diff) | |
Update copyrights in source tree to 2008.
Diffstat (limited to 'src/backend/nodes')
| -rw-r--r-- | src/backend/nodes/bitmapset.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/copyfuncs.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/equalfuncs.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/list.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/makefuncs.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/nodeFuncs.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/nodes.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/outfuncs.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/params.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/print.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/read.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/readfuncs.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/tidbitmap.c | 4 | ||||
| -rw-r--r-- | src/backend/nodes/value.c | 4 |
14 files changed, 28 insertions, 28 deletions
diff --git a/src/backend/nodes/bitmapset.c b/src/backend/nodes/bitmapset.c index bc77363fbf4..8a790c636bd 100644 --- a/src/backend/nodes/bitmapset.c +++ b/src/backend/nodes/bitmapset.c @@ -11,10 +11,10 @@ * bms_is_empty() in preference to testing for NULL.) * * - * Copyright (c) 2003-2007, PostgreSQL Global Development Group + * Copyright (c) 2003-2008, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/bitmapset.c,v 1.13 2007/06/01 15:33:18 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/bitmapset.c,v 1.14 2008/01/01 19:45:49 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index ebee72f80c7..a0128d0a0c3 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -11,11 +11,11 @@ * be handled easily in a simple depth-first traversal. * * - * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.386 2007/12/01 23:44:44 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.387 2008/01/01 19:45:50 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/nodes/equalfuncs.c b/src/backend/nodes/equalfuncs.c index ebca3370dfa..ffa4b7af02a 100644 --- a/src/backend/nodes/equalfuncs.c +++ b/src/backend/nodes/equalfuncs.c @@ -14,11 +14,11 @@ * either. This might need to be fixed someday. * * - * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/equalfuncs.c,v 1.316 2007/12/01 23:44:44 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/equalfuncs.c,v 1.317 2008/01/01 19:45:50 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/nodes/list.c b/src/backend/nodes/list.c index c881275d340..ab54d9aa595 100644 --- a/src/backend/nodes/list.c +++ b/src/backend/nodes/list.c @@ -4,12 +4,12 @@ * implementation for PostgreSQL generic linked list package * * - * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/list.c,v 1.68 2007/01/05 22:19:30 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/list.c,v 1.69 2008/01/01 19:45:50 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/nodes/makefuncs.c b/src/backend/nodes/makefuncs.c index 429a16cdfea..228bf5ea915 100644 --- a/src/backend/nodes/makefuncs.c +++ b/src/backend/nodes/makefuncs.c @@ -4,12 +4,12 @@ * creator functions for primitive nodes. The functions here are for * the most frequently created nodes. * - * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/makefuncs.c,v 1.57 2007/09/06 17:31:58 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/makefuncs.c,v 1.58 2008/01/01 19:45:50 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/nodes/nodeFuncs.c b/src/backend/nodes/nodeFuncs.c index 8becc96fd61..c72332a6112 100644 --- a/src/backend/nodes/nodeFuncs.c +++ b/src/backend/nodes/nodeFuncs.c @@ -3,12 +3,12 @@ * nodeFuncs.c * All node routines more complicated than simple access/modification * - * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/nodeFuncs.c,v 1.28 2007/01/05 22:19:30 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/nodeFuncs.c,v 1.29 2008/01/01 19:45:50 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/nodes/nodes.c b/src/backend/nodes/nodes.c index 4e6d86c22df..a2ced5f945f 100644 --- a/src/backend/nodes/nodes.c +++ b/src/backend/nodes/nodes.c @@ -4,12 +4,12 @@ * support code for nodes (now that we have removed the home-brew * inheritance system, our support code for nodes is much simpler) * - * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/nodes.c,v 1.27 2007/01/05 22:19:30 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/nodes.c,v 1.28 2008/01/01 19:45:50 momjian Exp $ * * HISTORY * Andrew Yu Oct 20, 1994 file creation diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index ee56af2bc84..38f09a41485 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -3,12 +3,12 @@ * outfuncs.c * Output functions for Postgres tree nodes. * - * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/outfuncs.c,v 1.319 2007/12/01 23:44:44 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/outfuncs.c,v 1.320 2008/01/01 19:45:50 momjian Exp $ * * NOTES * Every node type that can appear in stored rules' parsetrees *must* diff --git a/src/backend/nodes/params.c b/src/backend/nodes/params.c index 07593c55470..36f466a5002 100644 --- a/src/backend/nodes/params.c +++ b/src/backend/nodes/params.c @@ -4,11 +4,11 @@ * Support for finding the values associated with Param nodes. * * - * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/params.c,v 1.9 2007/03/13 00:33:41 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/params.c,v 1.10 2008/01/01 19:45:50 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/nodes/print.c b/src/backend/nodes/print.c index a12b6d5d626..5f0e94c6a00 100644 --- a/src/backend/nodes/print.c +++ b/src/backend/nodes/print.c @@ -3,12 +3,12 @@ * print.c * various print routines (used mostly for debugging) * - * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/print.c,v 1.86 2007/11/15 21:14:35 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/print.c,v 1.87 2008/01/01 19:45:50 momjian Exp $ * * HISTORY * AUTHOR DATE MAJOR EVENT diff --git a/src/backend/nodes/read.c b/src/backend/nodes/read.c index 64a7d18e9a9..e11fff800d7 100644 --- a/src/backend/nodes/read.c +++ b/src/backend/nodes/read.c @@ -4,12 +4,12 @@ * routines to convert a string (legal ascii representation of node) back * to nodes * - * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/read.c,v 1.50 2007/01/05 22:19:30 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/read.c,v 1.51 2008/01/01 19:45:50 momjian Exp $ * * HISTORY * AUTHOR DATE MAJOR EVENT diff --git a/src/backend/nodes/readfuncs.c b/src/backend/nodes/readfuncs.c index cb87011b398..de1f1b5348c 100644 --- a/src/backend/nodes/readfuncs.c +++ b/src/backend/nodes/readfuncs.c @@ -3,12 +3,12 @@ * readfuncs.c * Reader functions for Postgres tree nodes. * - * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/readfuncs.c,v 1.209 2007/06/11 22:22:41 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/readfuncs.c,v 1.210 2008/01/01 19:45:50 momjian Exp $ * * NOTES * Path and Plan nodes do not have any readfuncs support, because we diff --git a/src/backend/nodes/tidbitmap.c b/src/backend/nodes/tidbitmap.c index 53e35b01acc..18a260675a4 100644 --- a/src/backend/nodes/tidbitmap.c +++ b/src/backend/nodes/tidbitmap.c @@ -20,10 +20,10 @@ * point, but for now that seems useless complexity. * * - * Copyright (c) 2003-2007, PostgreSQL Global Development Group + * Copyright (c) 2003-2008, PostgreSQL Global Development Group * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/tidbitmap.c,v 1.13 2007/09/20 17:56:31 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/tidbitmap.c,v 1.14 2008/01/01 19:45:50 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/nodes/value.c b/src/backend/nodes/value.c index ccb72ec41a2..edc21395d7f 100644 --- a/src/backend/nodes/value.c +++ b/src/backend/nodes/value.c @@ -4,11 +4,11 @@ * implementation of Value nodes * * - * Copyright (c) 2003-2007, PostgreSQL Global Development Group + * Copyright (c) 2003-2008, PostgreSQL Global Development Group * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/value.c,v 1.4 2007/01/05 22:19:30 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/value.c,v 1.5 2008/01/01 19:45:50 momjian Exp $ * *------------------------------------------------------------------------- */ |
