diff options
| author | Bruce Momjian <bruce@momjian.us> | 2000-01-26 05:58:53 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2000-01-26 05:58:53 +0000 |
| commit | 5c25d60244d3a4b458ba55d4f1e50386edb26507 (patch) | |
| tree | 6c2beaeecb0df307027b2621e83f6e85da2a5642 /src/backend/parser | |
| parent | b866d2e2d79416f8497e4dffa7e800298d018f6c (diff) | |
| download | postgresql-5c25d60244d3a4b458ba55d4f1e50386edb26507.tar.gz | |
Add:
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
to all files copyright Regents of Berkeley. Man, that's a lot of files.
Diffstat (limited to 'src/backend/parser')
| -rw-r--r-- | src/backend/parser/analyze.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/gram.y | 5 | ||||
| -rw-r--r-- | src/backend/parser/keywords.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/parse_agg.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/parse_clause.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/parse_coerce.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/parse_expr.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/parse_func.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/parse_node.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/parse_oper.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/parse_relation.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/parse_target.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/parse_type.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/parser.c | 5 | ||||
| -rw-r--r-- | src/backend/parser/scan.l | 5 | ||||
| -rw-r--r-- | src/backend/parser/scansup.c | 5 |
16 files changed, 48 insertions, 32 deletions
diff --git a/src/backend/parser/analyze.c b/src/backend/parser/analyze.c index 56da67c454..48178bcb21 100644 --- a/src/backend/parser/analyze.c +++ b/src/backend/parser/analyze.c @@ -3,9 +3,10 @@ * analyze.c * transform the parse tree into a query tree * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: analyze.c,v 1.132 2000/01/22 01:22:48 tgl Exp $ + * $Id: analyze.c,v 1.133 2000/01/26 05:56:41 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y index 022c3649cb..924d26d26f 100644 --- a/src/backend/parser/gram.y +++ b/src/backend/parser/gram.y @@ -6,11 +6,12 @@ * gram.y * POSTGRES SQL YACC rules/actions * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.134 2000/01/23 08:16:37 ishii Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.135 2000/01/26 05:56:41 momjian Exp $ * * HISTORY * AUTHOR DATE MAJOR EVENT diff --git a/src/backend/parser/keywords.c b/src/backend/parser/keywords.c index 3cb4e2787d..05035f2344 100644 --- a/src/backend/parser/keywords.c +++ b/src/backend/parser/keywords.c @@ -3,11 +3,12 @@ * keywords.c * lexical token lookup for reserved words in postgres SQL * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.64 1999/11/30 03:57:26 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/keywords.c,v 1.65 2000/01/26 05:56:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/parse_agg.c b/src/backend/parser/parse_agg.c index 21f8efe7f6..3c23a29246 100644 --- a/src/backend/parser/parse_agg.c +++ b/src/backend/parser/parse_agg.c @@ -3,11 +3,12 @@ * parse_agg.c * handle aggregates in parser * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_agg.c,v 1.32 1999/12/13 01:26:58 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_agg.c,v 1.33 2000/01/26 05:56:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/parse_clause.c b/src/backend/parser/parse_clause.c index 0890ef7a63..ba2b5f8499 100644 --- a/src/backend/parser/parse_clause.c +++ b/src/backend/parser/parse_clause.c @@ -3,11 +3,12 @@ * parse_clause.c * handle clauses in parser * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_clause.c,v 1.49 2000/01/17 02:04:16 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_clause.c,v 1.50 2000/01/26 05:56:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/parse_coerce.c b/src/backend/parser/parse_coerce.c index 2d0c4b1d2a..67a3413238 100644 --- a/src/backend/parser/parse_coerce.c +++ b/src/backend/parser/parse_coerce.c @@ -3,11 +3,12 @@ * parse_coerce.c * handle type coersions/conversions for parser * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.28 2000/01/17 00:14:48 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.29 2000/01/26 05:56:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/parse_expr.c b/src/backend/parser/parse_expr.c index d1e4460b6c..76e28fbfec 100644 --- a/src/backend/parser/parse_expr.c +++ b/src/backend/parser/parse_expr.c @@ -3,11 +3,12 @@ * parse_expr.c * handle expressions in parser * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.66 2000/01/17 02:04:16 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_expr.c,v 1.67 2000/01/26 05:56:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/parse_func.c b/src/backend/parser/parse_func.c index 610fceac63..9686317944 100644 --- a/src/backend/parser/parse_func.c +++ b/src/backend/parser/parse_func.c @@ -3,11 +3,12 @@ * parse_func.c * handle function calls in parser * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.67 2000/01/24 19:34:14 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.68 2000/01/26 05:56:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/parse_node.c b/src/backend/parser/parse_node.c index 0b48beb049..19d2d11e5c 100644 --- a/src/backend/parser/parse_node.c +++ b/src/backend/parser/parse_node.c @@ -3,11 +3,12 @@ * parse_node.c * various routines that make nodes for query plans * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_node.c,v 1.36 2000/01/17 02:04:16 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_node.c,v 1.37 2000/01/26 05:56:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/parse_oper.c b/src/backend/parser/parse_oper.c index e3a6b66eca..21fdb22032 100644 --- a/src/backend/parser/parse_oper.c +++ b/src/backend/parser/parse_oper.c @@ -3,11 +3,12 @@ * parse_oper.h * handle operator things for parser * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_oper.c,v 1.34 1999/12/12 20:51:29 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_oper.c,v 1.35 2000/01/26 05:56:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/parse_relation.c b/src/backend/parser/parse_relation.c index 9d859fd084..4e72a7c029 100644 --- a/src/backend/parser/parse_relation.c +++ b/src/backend/parser/parse_relation.c @@ -3,11 +3,12 @@ * parse_relation.c * parser support routines dealing with relations * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_relation.c,v 1.33 1999/11/07 23:08:11 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_relation.c,v 1.34 2000/01/26 05:56:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/parse_target.c b/src/backend/parser/parse_target.c index b6eb7e0b54..653afe7058 100644 --- a/src/backend/parser/parse_target.c +++ b/src/backend/parser/parse_target.c @@ -3,11 +3,12 @@ * parse_target.c * handle target lists * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_target.c,v 1.53 2000/01/17 02:04:16 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_target.c,v 1.54 2000/01/26 05:56:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/parse_type.c b/src/backend/parser/parse_type.c index 1a2693d69f..3fc2c623fd 100644 --- a/src/backend/parser/parse_type.c +++ b/src/backend/parser/parse_type.c @@ -3,11 +3,12 @@ * parse_type.c * handle type operations for parser * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_type.c,v 1.28 2000/01/15 02:59:32 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_type.c,v 1.29 2000/01/26 05:56:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/parser.c b/src/backend/parser/parser.c index 1f6b99f759..a4be685e20 100644 --- a/src/backend/parser/parser.c +++ b/src/backend/parser/parser.c @@ -2,11 +2,12 @@ * * parser.c * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parser.c,v 1.42 1999/07/17 20:17:26 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parser.c,v 1.43 2000/01/26 05:56:43 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/scan.l b/src/backend/parser/scan.l index 090f5911db..e90a6ac79b 100644 --- a/src/backend/parser/scan.l +++ b/src/backend/parser/scan.l @@ -4,11 +4,12 @@ * scan.l * lexical scanner for POSTGRES * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.62 2000/01/23 01:27:35 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.63 2000/01/26 05:56:43 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/parser/scansup.c b/src/backend/parser/scansup.c index 4e15bd2409..ae05569071 100644 --- a/src/backend/parser/scansup.c +++ b/src/backend/parser/scansup.c @@ -4,11 +4,12 @@ * support routines for the lex/flex scanner, used by both the normal * backend as well as the bootstrap backend * - * Copyright (c) 1994, Regents of the University of California + * Portions Copyright (c) 1996-2000, PostgreSQL, Inc + * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/scansup.c,v 1.17 1999/09/11 22:26:35 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/scansup.c,v 1.18 2000/01/26 05:56:43 momjian Exp $ * *------------------------------------------------------------------------- */ |
