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/intarray | |
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/intarray')
-rw-r--r-- | contrib/intarray/_int.h | 3 | ||||
-rw-r--r-- | contrib/intarray/_int_bool.c | 3 | ||||
-rw-r--r-- | contrib/intarray/_int_gin.c | 3 | ||||
-rw-r--r-- | contrib/intarray/_int_gist.c | 3 | ||||
-rw-r--r-- | contrib/intarray/_int_op.c | 3 | ||||
-rw-r--r-- | contrib/intarray/_int_tool.c | 3 | ||||
-rw-r--r-- | contrib/intarray/_intbig_gist.c | 3 |
7 files changed, 21 insertions, 0 deletions
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" |