summaryrefslogtreecommitdiff
path: root/contrib/cube
diff options
context:
space:
mode:
authorBruce Momjian2006-03-11 04:38:42 +0000
committerBruce Momjian2006-03-11 04:38:42 +0000
commitf3d99d160d1f6104dc7b1b44e66aa4c713e52680 (patch)
tree2cbd8fd961414b548e8b6d506a3cd286d66b8f0e /contrib/cube
parent7992d0fbcaa5fa185f465e434836d63c1da94ba9 (diff)
Add CVS tag lines to files that were lacking them.
Diffstat (limited to 'contrib/cube')
-rw-r--r--contrib/cube/cube.c2
-rw-r--r--contrib/cube/cubedata.h2
-rw-r--r--contrib/cube/cubeparse.y2
-rw-r--r--contrib/cube/cubescan.l1
4 files changed, 7 insertions, 0 deletions
diff --git a/contrib/cube/cube.c b/contrib/cube/cube.c
index 0bc88ef6f14..c6df246d259 100644
--- a/contrib/cube/cube.c
+++ b/contrib/cube/cube.c
@@ -1,4 +1,6 @@
/******************************************************************************
+ $PostgreSQL: pgsql/contrib/cube/cube.c,v 1.24 2006/03/11 04:38:28 momjian Exp $
+
This file contains routines that can be bound to a Postgres backend and
called by the backend in the process of processing queries. The calling
format for these routines is dictated by Postgres architecture.
diff --git a/contrib/cube/cubedata.h b/contrib/cube/cubedata.h
index 8eaea960f7b..f4f2238aac7 100644
--- a/contrib/cube/cubedata.h
+++ b/contrib/cube/cubedata.h
@@ -1,3 +1,5 @@
+/* $PostgreSQL: pgsql/contrib/cube/cubedata.h,v 1.7 2006/03/11 04:38:28 momjian Exp $ */
+
#define CUBE_MAX_DIM (100)
typedef struct NDBOX
{
diff --git a/contrib/cube/cubeparse.y b/contrib/cube/cubeparse.y
index 9756b508aa5..1211f131eed 100644
--- a/contrib/cube/cubeparse.y
+++ b/contrib/cube/cubeparse.y
@@ -2,6 +2,8 @@
/* NdBox = [(lowerleft),(upperright)] */
/* [(xLL(1)...xLL(N)),(xUR(1)...xUR(n))] */
+/* $PostgreSQL: pgsql/contrib/cube/cubeparse.y,v 1.16 2006/03/11 04:38:28 momjian Exp $ */
+
#define YYPARSE_PARAM result /* need this to pass a pointer (void *) to yyparse */
#define YYSTYPE char *
#define YYDEBUG 1
diff --git a/contrib/cube/cubescan.l b/contrib/cube/cubescan.l
index 9d2b4ae18cb..a96b9c541d2 100644
--- a/contrib/cube/cubescan.l
+++ b/contrib/cube/cubescan.l
@@ -1,6 +1,7 @@
%{
/*
** A scanner for EMP-style numeric ranges
+ * $PostgreSQL: pgsql/contrib/cube/cubescan.l,v 1.11 2006/03/11 04:38:28 momjian Exp $
*/
#include "postgres.h"