summaryrefslogtreecommitdiff
path: root/src/include/parser
diff options
context:
space:
mode:
authorBruce Momjian2010-01-02 16:58:17 +0000
committerBruce Momjian2010-01-02 16:58:17 +0000
commit0239800893ef4901e3c085e06534934a485d3bf0 (patch)
tree4e52c59e97e01a0f8be48afcdb6a3c60ab47c7ea /src/include/parser
parent8292079ad3db05faff01d03c7a8646704edbf54b (diff)
Update copyright for the year 2010.
Diffstat (limited to 'src/include/parser')
-rw-r--r--src/include/parser/analyze.h4
-rw-r--r--src/include/parser/gramparse.h4
-rw-r--r--src/include/parser/keywords.h4
-rw-r--r--src/include/parser/kwlist.h4
-rw-r--r--src/include/parser/parse_agg.h4
-rw-r--r--src/include/parser/parse_clause.h4
-rw-r--r--src/include/parser/parse_coerce.h4
-rw-r--r--src/include/parser/parse_cte.h4
-rw-r--r--src/include/parser/parse_expr.h4
-rw-r--r--src/include/parser/parse_func.h4
-rw-r--r--src/include/parser/parse_node.h4
-rw-r--r--src/include/parser/parse_oper.h4
-rw-r--r--src/include/parser/parse_param.h4
-rw-r--r--src/include/parser/parse_relation.h4
-rw-r--r--src/include/parser/parse_target.h4
-rw-r--r--src/include/parser/parse_type.h4
-rw-r--r--src/include/parser/parse_utilcmd.h4
-rw-r--r--src/include/parser/parser.h4
-rw-r--r--src/include/parser/parsetree.h4
-rw-r--r--src/include/parser/scanner.h4
-rw-r--r--src/include/parser/scansup.h4
21 files changed, 42 insertions, 42 deletions
diff --git a/src/include/parser/analyze.h b/src/include/parser/analyze.h
index 8acd6153f8a..5f8f27fc0cd 100644
--- a/src/include/parser/analyze.h
+++ b/src/include/parser/analyze.h
@@ -4,10 +4,10 @@
* parse analysis for optimizable statements
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/analyze.h,v 1.43 2009/10/28 14:55:47 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/analyze.h,v 1.44 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/gramparse.h b/src/include/parser/gramparse.h
index 41774028b5b..55061d5674b 100644
--- a/src/include/parser/gramparse.h
+++ b/src/include/parser/gramparse.h
@@ -8,10 +8,10 @@
* outside the core parser should be in parser.h.
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/gramparse.h,v 1.50 2009/11/09 18:38:48 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/gramparse.h,v 1.51 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/keywords.h b/src/include/parser/keywords.h
index 2099e55664f..94eed4003bd 100644
--- a/src/include/parser/keywords.h
+++ b/src/include/parser/keywords.h
@@ -4,10 +4,10 @@
* lexical token lookup for key words in PostgreSQL
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/keywords.h,v 1.27 2009/07/14 20:24:10 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/keywords.h,v 1.28 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/kwlist.h b/src/include/parser/kwlist.h
index d4c30b1e561..72d717bfda8 100644
--- a/src/include/parser/kwlist.h
+++ b/src/include/parser/kwlist.h
@@ -7,11 +7,11 @@
* by the PG_KEYWORD macro, which is not defined in this file; it can
* be defined by the caller for special purposes.
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/include/parser/kwlist.h,v 1.8 2009/12/23 17:41:44 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/kwlist.h,v 1.9 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_agg.h b/src/include/parser/parse_agg.h
index b7c25f41811..dd884e5d435 100644
--- a/src/include/parser/parse_agg.h
+++ b/src/include/parser/parse_agg.h
@@ -3,10 +3,10 @@
* parse_agg.h
* handle aggregates and window functions in parser
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_agg.h,v 1.40 2009/12/15 17:57:47 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_agg.h,v 1.41 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_clause.h b/src/include/parser/parse_clause.h
index 1989b3e4e44..c6af17b2720 100644
--- a/src/include/parser/parse_clause.h
+++ b/src/include/parser/parse_clause.h
@@ -4,10 +4,10 @@
* handle clauses in parser
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_clause.h,v 1.57 2009/12/15 17:57:47 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_clause.h,v 1.58 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_coerce.h b/src/include/parser/parse_coerce.h
index c9f83e138f6..7347e04b93f 100644
--- a/src/include/parser/parse_coerce.h
+++ b/src/include/parser/parse_coerce.h
@@ -4,10 +4,10 @@
* Routines for type coercion.
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_coerce.h,v 1.79 2009/06/11 14:49:11 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_coerce.h,v 1.80 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_cte.h b/src/include/parser/parse_cte.h
index 7e4255610ec..022e4e3264f 100644
--- a/src/include/parser/parse_cte.h
+++ b/src/include/parser/parse_cte.h
@@ -4,10 +4,10 @@
* handle CTEs (common table expressions) in parser
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_cte.h,v 1.3 2009/09/09 03:32:52 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_cte.h,v 1.4 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h
index a923bf7b222..d442b7689ea 100644
--- a/src/include/parser/parse_expr.h
+++ b/src/include/parser/parse_expr.h
@@ -3,10 +3,10 @@
* parse_expr.h
* handle expressions in parser
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_expr.h,v 1.40 2009/01/01 17:24:00 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_expr.h,v 1.41 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h
index 8521f25ceaa..3800f287598 100644
--- a/src/include/parser/parse_func.h
+++ b/src/include/parser/parse_func.h
@@ -4,10 +4,10 @@
*
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_func.h,v 1.67 2009/12/15 17:57:47 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_func.h,v 1.68 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_node.h b/src/include/parser/parse_node.h
index 27aa7f2c612..2b56cde112a 100644
--- a/src/include/parser/parse_node.h
+++ b/src/include/parser/parse_node.h
@@ -4,10 +4,10 @@
* Internal definitions for parser
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_node.h,v 1.66 2009/10/31 01:41:31 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_node.h,v 1.67 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_oper.h b/src/include/parser/parse_oper.h
index 0f53c3aa94d..c62927c439e 100644
--- a/src/include/parser/parse_oper.h
+++ b/src/include/parser/parse_oper.h
@@ -4,10 +4,10 @@
* handle operator things for parser
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_oper.h,v 1.44 2009/01/01 17:24:00 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_oper.h,v 1.45 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_param.h b/src/include/parser/parse_param.h
index 1423cde97c6..fc0223ac0a6 100644
--- a/src/include/parser/parse_param.h
+++ b/src/include/parser/parse_param.h
@@ -3,10 +3,10 @@
* parse_param.h
* handle parameters in parser
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_param.h,v 1.1 2009/10/31 01:41:31 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_param.h,v 1.2 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_relation.h b/src/include/parser/parse_relation.h
index 006dfa75f06..1c0f209b3ad 100644
--- a/src/include/parser/parse_relation.h
+++ b/src/include/parser/parse_relation.h
@@ -4,10 +4,10 @@
* prototypes for parse_relation.c.
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_relation.h,v 1.67 2009/10/31 01:41:31 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_relation.h,v 1.68 2010/01/02 16:58:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_target.h b/src/include/parser/parse_target.h
index 9b4202be003..30e18e8303c 100644
--- a/src/include/parser/parse_target.h
+++ b/src/include/parser/parse_target.h
@@ -4,10 +4,10 @@
* handle target lists
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_target.h,v 1.45 2009/12/23 02:35:24 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_target.h,v 1.46 2010/01/02 16:58:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_type.h b/src/include/parser/parse_type.h
index c2b2b51bc1b..903df34b0f1 100644
--- a/src/include/parser/parse_type.h
+++ b/src/include/parser/parse_type.h
@@ -3,10 +3,10 @@
* parse_type.h
* handle type operations for parser
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_type.h,v 1.41 2009/07/16 06:33:45 petere Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_type.h,v 1.42 2010/01/02 16:58:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parse_utilcmd.h b/src/include/parser/parse_utilcmd.h
index 089c907c0e6..25fc8ebd633 100644
--- a/src/include/parser/parse_utilcmd.h
+++ b/src/include/parser/parse_utilcmd.h
@@ -4,10 +4,10 @@
* parse analysis for utility commands
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parse_utilcmd.h,v 1.4 2009/01/01 17:24:00 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parse_utilcmd.h,v 1.5 2010/01/02 16:58:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parser.h b/src/include/parser/parser.h
index 7b2ae28ab62..3cc2a6f5475 100644
--- a/src/include/parser/parser.h
+++ b/src/include/parser/parser.h
@@ -5,10 +5,10 @@
*
* This is the external API for the raw lexing/parsing functions.
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parser.h,v 1.28 2009/11/12 01:13:12 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parser.h,v 1.29 2010/01/02 16:58:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/parsetree.h b/src/include/parser/parsetree.h
index 2399dccf07d..771b0a55d26 100644
--- a/src/include/parser/parsetree.h
+++ b/src/include/parser/parsetree.h
@@ -5,10 +5,10 @@
* parse trees.
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/parsetree.h,v 1.38 2009/10/26 02:26:45 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/parsetree.h,v 1.39 2010/01/02 16:58:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/scanner.h b/src/include/parser/scanner.h
index ccab1db862c..60a6fc1be10 100644
--- a/src/include/parser/scanner.h
+++ b/src/include/parser/scanner.h
@@ -8,10 +8,10 @@
* higher-level API provided by parser.h.
*
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/scanner.h,v 1.1 2009/11/09 18:38:48 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/parser/scanner.h,v 1.2 2010/01/02 16:58:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/parser/scansup.h b/src/include/parser/scansup.h
index e7418afe46a..6788a06c022 100644
--- a/src/include/parser/scansup.h
+++ b/src/include/parser/scansup.h
@@ -4,10 +4,10 @@
* scanner support routines. used by both the bootstrap lexer
* as well as the normal lexer
*
- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/parser/scansup.h,v 1.23 2009/01/01 17:24:00 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/parser/scansup.h,v 1.24 2010/01/02 16:58:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/