diff options
| author | Bruce Momjian <bruce@momjian.us> | 2006-03-11 04:38:42 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2006-03-11 04:38:42 +0000 |
| commit | f3d99d160d1f6104dc7b1b44e66aa4c713e52680 (patch) | |
| tree | 2cbd8fd961414b548e8b6d506a3cd286d66b8f0e /contrib/ltree | |
| parent | 7992d0fbcaa5fa185f465e434836d63c1da94ba9 (diff) | |
| download | postgresql-f3d99d160d1f6104dc7b1b44e66aa4c713e52680.tar.gz | |
Add CVS tag lines to files that were lacking them.
Diffstat (limited to 'contrib/ltree')
| -rw-r--r-- | contrib/ltree/crc32.c | 2 | ||||
| -rw-r--r-- | contrib/ltree/crc32.h | 2 | ||||
| -rw-r--r-- | contrib/ltree/lquery_op.c | 1 | ||||
| -rw-r--r-- | contrib/ltree/ltree.h | 2 | ||||
| -rw-r--r-- | contrib/ltree/ltree_gist.c | 1 | ||||
| -rw-r--r-- | contrib/ltree/ltree_io.c | 1 | ||||
| -rw-r--r-- | contrib/ltree/ltree_op.c | 1 | ||||
| -rw-r--r-- | contrib/ltree/ltxtquery_io.c | 1 | ||||
| -rw-r--r-- | contrib/ltree/ltxtquery_op.c | 1 |
9 files changed, 12 insertions, 0 deletions
diff --git a/contrib/ltree/crc32.c b/contrib/ltree/crc32.c index c82b3a644c..c114540181 100644 --- a/contrib/ltree/crc32.c +++ b/contrib/ltree/crc32.c @@ -1,5 +1,7 @@ /* Both POSIX and CRC32 checksums */ +/* $PostgreSQL: pgsql/contrib/ltree/crc32.c,v 1.6 2006/03/11 04:38:29 momjian Exp $ */ + #include <sys/types.h> #include <stdio.h> #include <sys/types.h> diff --git a/contrib/ltree/crc32.h b/contrib/ltree/crc32.h index f70722c1c5..69d9eee3e1 100644 --- a/contrib/ltree/crc32.h +++ b/contrib/ltree/crc32.h @@ -1,6 +1,8 @@ #ifndef _CRC32_H #define _CRC32_H +/* $PostgreSQL: pgsql/contrib/ltree/crc32.h,v 1.3 2006/03/11 04:38:29 momjian Exp $ */ + /* Returns crc32 of data block */ extern unsigned int ltree_crc32_sz(char *buf, int size); diff --git a/contrib/ltree/lquery_op.c b/contrib/ltree/lquery_op.c index 9d43b6444d..07269ceaee 100644 --- a/contrib/ltree/lquery_op.c +++ b/contrib/ltree/lquery_op.c @@ -1,6 +1,7 @@ /* * op function for ltree and lquery * Teodor Sigaev <teodor@stack.net> + * $PostgreSQL: pgsql/contrib/ltree/lquery_op.c,v 1.10 2006/03/11 04:38:29 momjian Exp $ */ #include "ltree.h" diff --git a/contrib/ltree/ltree.h b/contrib/ltree/ltree.h index 3281afefa1..3cd67794b9 100644 --- a/contrib/ltree/ltree.h +++ b/contrib/ltree/ltree.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/ltree/ltree.h,v 1.15 2006/03/11 04:38:29 momjian Exp $ */ + #ifndef __LTREE_H__ #define __LTREE_H__ diff --git a/contrib/ltree/ltree_gist.c b/contrib/ltree/ltree_gist.c index 5447677e02..e210117cbc 100644 --- a/contrib/ltree/ltree_gist.c +++ b/contrib/ltree/ltree_gist.c @@ -1,6 +1,7 @@ /* * GiST support for ltree * Teodor Sigaev <teodor@stack.net> + * $PostgreSQL: pgsql/contrib/ltree/ltree_gist.c,v 1.14 2006/03/11 04:38:29 momjian Exp $ */ #include "ltree.h" diff --git a/contrib/ltree/ltree_io.c b/contrib/ltree/ltree_io.c index a44a5a71dd..c147887703 100644 --- a/contrib/ltree/ltree_io.c +++ b/contrib/ltree/ltree_io.c @@ -1,6 +1,7 @@ /* * in/out function for ltree and lquery * Teodor Sigaev <teodor@stack.net> + * $PostgreSQL: pgsql/contrib/ltree/ltree_io.c,v 1.12 2006/03/11 04:38:29 momjian Exp $ */ #include "ltree.h" diff --git a/contrib/ltree/ltree_op.c b/contrib/ltree/ltree_op.c index f10f7df412..ec2d0fbf5d 100644 --- a/contrib/ltree/ltree_op.c +++ b/contrib/ltree/ltree_op.c @@ -1,6 +1,7 @@ /* * op function for ltree * Teodor Sigaev <teodor@stack.net> + * $PostgreSQL: pgsql/contrib/ltree/ltree_op.c,v 1.9 2006/03/11 04:38:29 momjian Exp $ */ #include "ltree.h" diff --git a/contrib/ltree/ltxtquery_io.c b/contrib/ltree/ltxtquery_io.c index 1a7117c15f..1142bb3fe3 100644 --- a/contrib/ltree/ltxtquery_io.c +++ b/contrib/ltree/ltxtquery_io.c @@ -1,6 +1,7 @@ /* * txtquery io * Teodor Sigaev <teodor@stack.net> + * $PostgreSQL: pgsql/contrib/ltree/ltxtquery_io.c,v 1.11 2006/03/11 04:38:29 momjian Exp $ */ #include "ltree.h" diff --git a/contrib/ltree/ltxtquery_op.c b/contrib/ltree/ltxtquery_op.c index 34e711eaca..07ebc201c7 100644 --- a/contrib/ltree/ltxtquery_op.c +++ b/contrib/ltree/ltxtquery_op.c @@ -1,6 +1,7 @@ /* * txtquery operations with ltree * Teodor Sigaev <teodor@stack.net> + * $PostgreSQL: pgsql/contrib/ltree/ltxtquery_op.c,v 1.6 2006/03/11 04:38:29 momjian Exp $ */ #include "ltree.h" |
