diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2008-05-17 01:28:26 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2008-05-17 01:28:26 +0000 |
commit | 53972b460c6bc56178244ac53cf71e11bba6c37a (patch) | |
tree | e5ea73b8ea69f5b988aa0649519bec19d9e24cc2 /contrib | |
parent | caede71b447971399011ef7687f4c68fe5ac9fc6 (diff) | |
download | postgresql-53972b460c6bc56178244ac53cf71e11bba6c37a.tar.gz postgresql-53972b460c6bc56178244ac53cf71e11bba6c37a.zip |
Add $PostgreSQL$ markers to a lot of files that were missing them.
This particular batch was just for *.c and *.h file.
The changes were made with the following 2 commands:
find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | while read file ; do head -n 1 < $file | grep -q '^/\*' && echo $file; done | xargs -l sed -i -e '1s/^\// /' -e '1i/*\n * $PostgreSQL:$ \n *'
find . \( \( -name 'libstemmer' -o -name 'expected' -o -name 'ppport.h' \) -prune \) -o \( -name '*.[ch]' \) \( -exec grep -q '\$PostgreSQL' {} \; -o -print \) | xargs -l sed -i -e '1i/*\n * $PostgreSQL:$ \n */'
Diffstat (limited to 'contrib')
51 files changed, 158 insertions, 5 deletions
diff --git a/contrib/btree_gist/btree_bit.c b/contrib/btree_gist/btree_bit.c index d86034fd6ff..feadf6be48b 100644 --- a/contrib/btree_gist/btree_bit.c +++ b/contrib/btree_gist/btree_bit.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_bit.c,v 1.9 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_var.h" #include "utils/builtins.h" diff --git a/contrib/btree_gist/btree_bytea.c b/contrib/btree_gist/btree_bytea.c index 02229653f48..9619a7a0af0 100644 --- a/contrib/btree_gist/btree_bytea.c +++ b/contrib/btree_gist/btree_bytea.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_bytea.c,v 1.8 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_var.h" #include "utils/builtins.h" diff --git a/contrib/btree_gist/btree_cash.c b/contrib/btree_gist/btree_cash.c index 17edd023091..4543b082e9c 100644 --- a/contrib/btree_gist/btree_cash.c +++ b/contrib/btree_gist/btree_cash.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_cash.c,v 1.8 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/cash.h" diff --git a/contrib/btree_gist/btree_date.c b/contrib/btree_gist/btree_date.c index 212ee2d3972..5ee7273a0b9 100644 --- a/contrib/btree_gist/btree_date.c +++ b/contrib/btree_gist/btree_date.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_date.c,v 1.6 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/date.h" diff --git a/contrib/btree_gist/btree_float4.c b/contrib/btree_gist/btree_float4.c index 1aab392b80d..1def7479e0c 100644 --- a/contrib/btree_gist/btree_float4.c +++ b/contrib/btree_gist/btree_float4.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_float4.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_float8.c b/contrib/btree_gist/btree_float8.c index 3c804922cc1..6117adf19e5 100644 --- a/contrib/btree_gist/btree_float8.c +++ b/contrib/btree_gist/btree_float8.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_float8.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_gist.c b/contrib/btree_gist/btree_gist.c index c5c7bb88bbb..d3befb04f79 100644 --- a/contrib/btree_gist/btree_gist.c +++ b/contrib/btree_gist/btree_gist.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.c,v 1.12 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" PG_MODULE_MAGIC; diff --git a/contrib/btree_gist/btree_gist.h b/contrib/btree_gist/btree_gist.h index 299f2d359e8..dd708fb889a 100644 --- a/contrib/btree_gist/btree_gist.h +++ b/contrib/btree_gist/btree_gist.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.h,v 1.8 2008/05/17 01:28:19 adunstan Exp $ + */ #ifndef __BTREE_GIST_H__ #define __BTREE_GIST_H__ diff --git a/contrib/btree_gist/btree_inet.c b/contrib/btree_gist/btree_inet.c index b54e1c112f7..d8c85d7433d 100644 --- a/contrib/btree_gist/btree_inet.c +++ b/contrib/btree_gist/btree_inet.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_inet.c,v 1.9 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/builtins.h" diff --git a/contrib/btree_gist/btree_int2.c b/contrib/btree_gist/btree_int2.c index b129130c2c4..fa03f364f8e 100644 --- a/contrib/btree_gist/btree_int2.c +++ b/contrib/btree_gist/btree_int2.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_int2.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_int4.c b/contrib/btree_gist/btree_int4.c index c07c9a1e2c2..5d9b1a19f9c 100644 --- a/contrib/btree_gist/btree_int4.c +++ b/contrib/btree_gist/btree_int4.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_int4.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_int8.c b/contrib/btree_gist/btree_int8.c index 3466e1c1156..59493081bdd 100644 --- a/contrib/btree_gist/btree_int8.c +++ b/contrib/btree_gist/btree_int8.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_int8.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_interval.c b/contrib/btree_gist/btree_interval.c index 232ba20531f..e5c096cfda6 100644 --- a/contrib/btree_gist/btree_interval.c +++ b/contrib/btree_gist/btree_interval.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_interval.c,v 1.11 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/timestamp.h" diff --git a/contrib/btree_gist/btree_macaddr.c b/contrib/btree_gist/btree_macaddr.c index 5bdc9eb3bd0..da57e6d4e34 100644 --- a/contrib/btree_gist/btree_macaddr.c +++ b/contrib/btree_gist/btree_macaddr.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_macaddr.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/builtins.h" diff --git a/contrib/btree_gist/btree_numeric.c b/contrib/btree_gist/btree_numeric.c index a1fcf602c0e..e7d4b330faa 100644 --- a/contrib/btree_gist/btree_numeric.c +++ b/contrib/btree_gist/btree_numeric.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_numeric.c,v 1.11 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include <math.h> diff --git a/contrib/btree_gist/btree_oid.c b/contrib/btree_gist/btree_oid.c index 119035cad60..3334275530a 100644 --- a/contrib/btree_gist/btree_oid.c +++ b/contrib/btree_gist/btree_oid.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_oid.c,v 1.7 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" diff --git a/contrib/btree_gist/btree_text.c b/contrib/btree_gist/btree_text.c index 7951d055d3d..a0e817780e8 100644 --- a/contrib/btree_gist/btree_text.c +++ b/contrib/btree_gist/btree_text.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_text.c,v 1.11 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_var.h" #include "utils/builtins.h" diff --git a/contrib/btree_gist/btree_time.c b/contrib/btree_gist/btree_time.c index 0d2c2cf10ea..fff5e3b4469 100644 --- a/contrib/btree_gist/btree_time.c +++ b/contrib/btree_gist/btree_time.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_time.c,v 1.15 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/date.h" diff --git a/contrib/btree_gist/btree_ts.c b/contrib/btree_gist/btree_ts.c index 32451244b50..c20699fa914 100644 --- a/contrib/btree_gist/btree_ts.c +++ b/contrib/btree_gist/btree_ts.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_ts.c,v 1.16 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/datetime.h" diff --git a/contrib/btree_gist/btree_utils_num.c b/contrib/btree_gist/btree_utils_num.c index 5e227196b65..357a8f165b6 100644 --- a/contrib/btree_gist/btree_utils_num.c +++ b/contrib/btree_gist/btree_utils_num.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_num.c,v 1.11 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/cash.h" diff --git a/contrib/btree_gist/btree_utils_num.h b/contrib/btree_gist/btree_utils_num.h index dcaa94bbeee..de2e35b772c 100644 --- a/contrib/btree_gist/btree_utils_num.h +++ b/contrib/btree_gist/btree_utils_num.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_num.h,v 1.12 2008/05/17 01:28:19 adunstan Exp $ + */ #ifndef __BTREE_UTILS_NUM_H__ #define __BTREE_UTILS_NUM_H__ diff --git a/contrib/btree_gist/btree_utils_var.c b/contrib/btree_gist/btree_utils_var.c index 1ad5c0d99bb..37107c9d92f 100644 --- a/contrib/btree_gist/btree_utils_var.c +++ b/contrib/btree_gist/btree_utils_var.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_var.c,v 1.19 2008/05/17 01:28:19 adunstan Exp $ + */ #include "btree_gist.h" #include <math.h> diff --git a/contrib/btree_gist/btree_utils_var.h b/contrib/btree_gist/btree_utils_var.h index 0c723e91ac3..53d720adc55 100644 --- a/contrib/btree_gist/btree_utils_var.h +++ b/contrib/btree_gist/btree_utils_var.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_var.h,v 1.8 2008/05/17 01:28:19 adunstan Exp $ + */ #ifndef __BTREE_UTILS_VAR_H__ #define __BTREE_UTILS_VAR_H__ diff --git a/contrib/hstore/crc32.c b/contrib/hstore/crc32.c index 5f4f7a3178c..b1f80fde078 100644 --- a/contrib/hstore/crc32.c +++ b/contrib/hstore/crc32.c @@ -1,4 +1,7 @@ -/* Both POSIX and CRC32 checksums */ +/* + * $PostgreSQL: pgsql/contrib/hstore/crc32.c,v 1.3 2008/05/17 01:28:19 adunstan Exp $ + * + * Both POSIX and CRC32 checksums */ #include <sys/types.h> #include <stdio.h> diff --git a/contrib/hstore/crc32.h b/contrib/hstore/crc32.h index 97254a4a909..d2d6c8bd9a6 100644 --- a/contrib/hstore/crc32.h +++ b/contrib/hstore/crc32.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/hstore/crc32.h,v 1.2 2008/05/17 01:28:19 adunstan Exp $ + */ #ifndef _CRC32_H #define _CRC32_H diff --git a/contrib/intarray/_int.h b/contrib/intarray/_int.h index 6a9bccb525a..debc324933c 100644 --- a/contrib/intarray/_int.h +++ b/contrib/intarray/_int.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/intarray/_int.h,v 1.16 2008/05/17 01:28:19 adunstan Exp $ + */ #ifndef ___INT_H__ #define ___INT_H__ diff --git a/contrib/intarray/_int_bool.c b/contrib/intarray/_int_bool.c index a9fc66c1ffe..2cba9b66c12 100644 --- a/contrib/intarray/_int_bool.c +++ b/contrib/intarray/_int_bool.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/intarray/_int_bool.c,v 1.15 2008/05/17 01:28:19 adunstan Exp $ + */ #include "postgres.h" #include "utils/builtins.h" diff --git a/contrib/intarray/_int_gin.c b/contrib/intarray/_int_gin.c index d8959903181..0edb686df2e 100644 --- a/contrib/intarray/_int_gin.c +++ b/contrib/intarray/_int_gin.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/intarray/_int_gin.c,v 1.8 2008/05/17 01:28:19 adunstan Exp $ + */ #include "postgres.h" #include "access/gist.h" diff --git a/contrib/intarray/_int_gist.c b/contrib/intarray/_int_gist.c index 8f8f79a8245..13fee25ec72 100644 --- a/contrib/intarray/_int_gist.c +++ b/contrib/intarray/_int_gist.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/intarray/_int_gist.c,v 1.22 2008/05/17 01:28:19 adunstan Exp $ + */ #include "postgres.h" #include "access/gist.h" diff --git a/contrib/intarray/_int_op.c b/contrib/intarray/_int_op.c index dd3b0289296..b29a405e355 100644 --- a/contrib/intarray/_int_op.c +++ b/contrib/intarray/_int_op.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/intarray/_int_op.c,v 1.8 2008/05/17 01:28:19 adunstan Exp $ + */ #include "postgres.h" #include "lib/stringinfo.h" diff --git a/contrib/intarray/_int_tool.c b/contrib/intarray/_int_tool.c index 82ab490784d..7f7e4d43a9e 100644 --- a/contrib/intarray/_int_tool.c +++ b/contrib/intarray/_int_tool.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/intarray/_int_tool.c,v 1.11 2008/05/17 01:28:19 adunstan Exp $ + */ #include "postgres.h" #include "catalog/pg_type.h" diff --git a/contrib/intarray/_intbig_gist.c b/contrib/intarray/_intbig_gist.c index fe83860cfae..d1e3f19037d 100644 --- a/contrib/intarray/_intbig_gist.c +++ b/contrib/intarray/_intbig_gist.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/intarray/_intbig_gist.c,v 1.19 2008/05/17 01:28:19 adunstan Exp $ + */ #include "postgres.h" #include "access/gist.h" diff --git a/contrib/ltree/_ltree_gist.c b/contrib/ltree/_ltree_gist.c index f1fa0fbaf42..3d9145cf6b0 100644 --- a/contrib/ltree/_ltree_gist.c +++ b/contrib/ltree/_ltree_gist.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL: pgsql/contrib/ltree/_ltree_gist.c,v 1.25 2008/05/17 01:28:19 adunstan Exp $ + * + * * GiST support for ltree[] * Teodor Sigaev <teodor@stack.net> */ diff --git a/contrib/ltree/_ltree_op.c b/contrib/ltree/_ltree_op.c index 4a648ee03e9..c0d0a950019 100644 --- a/contrib/ltree/_ltree_op.c +++ b/contrib/ltree/_ltree_op.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL: pgsql/contrib/ltree/_ltree_op.c,v 1.12 2008/05/17 01:28:19 adunstan Exp $ + * + * * op function for ltree[] * Teodor Sigaev <teodor@stack.net> */ diff --git a/contrib/pageinspect/btreefuncs.c b/contrib/pageinspect/btreefuncs.c index 3fbfb9c12b8..ab80b545000 100644 --- a/contrib/pageinspect/btreefuncs.c +++ b/contrib/pageinspect/btreefuncs.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL: pgsql/contrib/pageinspect/btreefuncs.c,v 1.8 2008/05/17 01:28:19 adunstan Exp $ + * + * * btreefuncs.c * * Copyright (c) 2006 Satoshi Nagayasu <nagayasus@nttdata.co.jp> diff --git a/contrib/pg_standby/pg_standby.c b/contrib/pg_standby/pg_standby.c index 9879348cc1b..e8597c69738 100644 --- a/contrib/pg_standby/pg_standby.c +++ b/contrib/pg_standby/pg_standby.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.12 2008/05/17 01:28:21 adunstan Exp $ + * + * * pg_standby.c * * Production-ready example of how to create a Warm Standby diff --git a/contrib/pg_trgm/trgm.h b/contrib/pg_trgm/trgm.h index 5a8d2e362a7..e2f60fcf7b1 100644 --- a/contrib/pg_trgm/trgm.h +++ b/contrib/pg_trgm/trgm.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/pg_trgm/trgm.h,v 1.9 2008/05/17 01:28:21 adunstan Exp $ + */ #ifndef __TRGM_H__ #define __TRGM_H__ diff --git a/contrib/pg_trgm/trgm_gin.c b/contrib/pg_trgm/trgm_gin.c index 9a36afa074a..82ac2b41c1c 100644 --- a/contrib/pg_trgm/trgm_gin.c +++ b/contrib/pg_trgm/trgm_gin.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/pg_trgm/trgm_gin.c,v 1.4 2008/05/17 01:28:21 adunstan Exp $ + */ #include "trgm.h" #include "access/gin.h" diff --git a/contrib/pg_trgm/trgm_gist.c b/contrib/pg_trgm/trgm_gist.c index 9cf88dc45bd..7baf4fd6978 100644 --- a/contrib/pg_trgm/trgm_gist.c +++ b/contrib/pg_trgm/trgm_gist.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/pg_trgm/trgm_gist.c,v 1.14 2008/05/17 01:28:21 adunstan Exp $ + */ #include "trgm.h" #include "access/gist.h" diff --git a/contrib/pg_trgm/trgm_op.c b/contrib/pg_trgm/trgm_op.c index 6b0e28d5d20..ae72ae617f4 100644 --- a/contrib/pg_trgm/trgm_op.c +++ b/contrib/pg_trgm/trgm_op.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/pg_trgm/trgm_op.c,v 1.10 2008/05/17 01:28:21 adunstan Exp $ + */ #include "trgm.h" #include <ctype.h> #include "utils/array.h" diff --git a/contrib/pgcrypto/rijndael.h b/contrib/pgcrypto/rijndael.h index 41c1a2a122f..e5e862323f8 100644 --- a/contrib/pgcrypto/rijndael.h +++ b/contrib/pgcrypto/rijndael.h @@ -1,4 +1,7 @@ -/* $OpenBSD: rijndael.h,v 1.3 2001/05/09 23:01:32 markus Exp $ */ +/* + * $PostgreSQL: pgsql/contrib/pgcrypto/rijndael.h,v 1.6 2008/05/17 01:28:21 adunstan Exp $ + * + * $OpenBSD: rijndael.h,v 1.3 2001/05/09 23:01:32 markus Exp $ */ /* This is an independent implementation of the encryption algorithm: */ /* */ diff --git a/contrib/pgstattuple/pgstatindex.c b/contrib/pgstattuple/pgstatindex.c index 7b95a070b42..dfb162d5e45 100644 --- a/contrib/pgstattuple/pgstatindex.c +++ b/contrib/pgstattuple/pgstatindex.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL: pgsql/contrib/pgstattuple/pgstatindex.c,v 1.11 2008/05/17 01:28:22 adunstan Exp $ + * + * * pgstatindex * * Copyright (c) 2006 Satoshi Nagayasu <nagayasus@nttdata.co.jp> diff --git a/contrib/seg/seg.c b/contrib/seg/seg.c index cb0ce4f5cab..8a95a1d5cca 100644 --- a/contrib/seg/seg.c +++ b/contrib/seg/seg.c @@ -1,4 +1,7 @@ -/****************************************************************************** +/* + * $PostgreSQL: pgsql/contrib/seg/seg.c,v 1.24 2008/05/17 01:28:22 adunstan 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/seg/segdata.h b/contrib/seg/segdata.h index 420df739c51..ce177fb80b1 100644 --- a/contrib/seg/segdata.h +++ b/contrib/seg/segdata.h @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/seg/segdata.h,v 1.5 2008/05/17 01:28:22 adunstan Exp $ + */ typedef struct SEG { float4 lower; diff --git a/contrib/spi/autoinc.c b/contrib/spi/autoinc.c index 6ca09230a60..bc39db00c26 100644 --- a/contrib/spi/autoinc.c +++ b/contrib/spi/autoinc.c @@ -1,3 +1,6 @@ +/* + * $PostgreSQL: pgsql/contrib/spi/autoinc.c,v 1.15 2008/05/17 01:28:22 adunstan Exp $ + */ #include "executor/spi.h" /* this is what you need to work with SPI */ #include "commands/trigger.h" /* -"- and triggers */ diff --git a/contrib/spi/refint.c b/contrib/spi/refint.c index d88975d5e9c..dd628e7be3e 100644 --- a/contrib/spi/refint.c +++ b/contrib/spi/refint.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL: pgsql/contrib/spi/refint.c,v 1.33 2008/05/17 01:28:22 adunstan Exp $ + * + * * refint.c -- set of functions to define referential integrity * constraints using general triggers. */ diff --git a/contrib/spi/timetravel.c b/contrib/spi/timetravel.c index 0fd5cae09bb..a0a1b22923f 100644 --- a/contrib/spi/timetravel.c +++ b/contrib/spi/timetravel.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL: pgsql/contrib/spi/timetravel.c,v 1.29 2008/05/17 01:28:22 adunstan Exp $ + * + * * timetravel.c -- function to get time travel feature * using general triggers. */ diff --git a/contrib/tablefunc/tablefunc.c b/contrib/tablefunc/tablefunc.c index 793f26ed583..e220c736333 100644 --- a/contrib/tablefunc/tablefunc.c +++ b/contrib/tablefunc/tablefunc.c @@ -1,4 +1,7 @@ /* + * $PostgreSQL: pgsql/contrib/tablefunc/tablefunc.c,v 1.53 2008/05/17 01:28:22 adunstan Exp $ + * + * * tablefunc * * Sample to demonstrate C functions which return setof scalar diff --git a/contrib/tablefunc/tablefunc.h b/contrib/tablefunc/tablefunc.h index f6fbf97827f..3b4bb40cef6 100644 --- a/contrib/tablefunc/tablefunc.h +++ b/contrib/tablefunc/tablefunc.h @@ -1,4 +1,7 @@ /* + * $PostgreSQL: pgsql/contrib/tablefunc/tablefunc.h,v 1.14 2008/05/17 01:28:22 adunstan Exp $ + * + * * tablefunc * * Sample to demonstrate C functions which return setof scalar diff --git a/contrib/xml2/xpath.c b/contrib/xml2/xpath.c index 98865bac7a6..39908494f3e 100644 --- a/contrib/xml2/xpath.c +++ b/contrib/xml2/xpath.c @@ -1,4 +1,7 @@ -/* Parser interface for DOM-based parser (libxml) rather than +/* + * $PostgreSQL: pgsql/contrib/xml2/xpath.c,v 1.20 2008/05/17 01:28:22 adunstan Exp $ + * + * Parser interface for DOM-based parser (libxml) rather than stream-based SAX-type parser */ #include "postgres.h" diff --git a/contrib/xml2/xslt_proc.c b/contrib/xml2/xslt_proc.c index b2349aaace7..425a9393337 100644 --- a/contrib/xml2/xslt_proc.c +++ b/contrib/xml2/xslt_proc.c @@ -1,4 +1,7 @@ -/* XSLT processing functions (requiring libxslt) */ +/* + * $PostgreSQL: pgsql/contrib/xml2/xslt_proc.c,v 1.13 2008/05/17 01:28:22 adunstan Exp $ + * + * XSLT processing functions (requiring libxslt) */ /* John Gray, for Torchbox 2003-04-01 */ #include "postgres.h" |