diff --git a/config/install-sh b/config/install-sh index 1a8353401c..9ad17050e6 100755 --- a/config/install-sh +++ b/config/install-sh @@ -1,6 +1,8 @@ #!/bin/sh # install - install a program, script, or datafile +# $PostgreSQL: pgsql/config/install-sh,v 1.4 2006/03/11 04:38:28 momjian Exp $ + scriptversion=2005-02-02.21 # This originates from X11R5 (mit/util/scripts/install.sh), which was diff --git a/config/missing b/config/missing index 29865631d5..2d47501bb5 100755 --- a/config/missing +++ b/config/missing @@ -1,5 +1,7 @@ #! /bin/sh +# $PostgreSQL: pgsql/config/missing,v 1.4 2006/03/11 04:38:28 momjian Exp $ + # This is *not* the GNU `missing' script, although it is similar in # concept. You can call it from the makefiles to get consistent # behavior when certain utility programs are missing. diff --git a/config/mkinstalldirs b/config/mkinstalldirs index 5d26a485f1..070b418022 100755 --- a/config/mkinstalldirs +++ b/config/mkinstalldirs @@ -1,6 +1,8 @@ #! /bin/sh # mkinstalldirs --- make directory hierarchy +# $PostgreSQL: pgsql/config/mkinstalldirs,v 1.5 2006/03/11 04:38:28 momjian Exp $ + scriptversion=2005-02-02.21 # Original author: Noah Friedman diff --git a/contrib/cube/cube.c b/contrib/cube/cube.c index 0bc88ef6f1..c6df246d25 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 8eaea960f7..f4f2238aac 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 9756b508aa..1211f131ee 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 9d2b4ae18c..a96b9c541d 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" diff --git a/contrib/dbase/dbf.c b/contrib/dbase/dbf.c index 4c79a07d60..ba1c99bc4b 100644 --- a/contrib/dbase/dbf.c +++ b/contrib/dbase/dbf.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/dbase/dbf.c,v 1.10 2006/03/11 04:38:28 momjian Exp $ */ + /* Routines to read and write xBase-files (.dbf) By Maarten Boekhold, 29th of oktober 1995 diff --git a/contrib/dbase/dbf.h b/contrib/dbase/dbf.h index d9c88ed35b..2e734b7107 100644 --- a/contrib/dbase/dbf.h +++ b/contrib/dbase/dbf.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/dbase/dbf.h,v 1.9 2006/03/11 04:38:28 momjian Exp $ */ + /* header-file for dbf.c declares routines for reading and writing xBase-files (.dbf), and associated structures diff --git a/contrib/dbase/dbf2pg.1 b/contrib/dbase/dbf2pg.1 index e62d3323b5..34b37b402a 100644 --- a/contrib/dbase/dbf2pg.1 +++ b/contrib/dbase/dbf2pg.1 @@ -1,3 +1,5 @@ +.\" $PostgreSQL: pgsql/contrib/dbase/dbf2pg.1,v 1.3 2006/03/11 04:38:28 momjian Exp $ + .TH dbf2sql 1L \" -*- nroff -*- .SH NAME dbf2sql \- Insert xBase\-style .dbf\-files into a PostgreSQL\-table diff --git a/contrib/dbase/dbf2pg.c b/contrib/dbase/dbf2pg.c index 50948a6bf2..0fc0aedd8f 100644 --- a/contrib/dbase/dbf2pg.c +++ b/contrib/dbase/dbf2pg.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/dbase/dbf2pg.c,v 1.27 2006/03/11 04:38:28 momjian Exp $ */ + /* This program reads in an xbase-dbf file and sends 'inserts' to an PostgreSQL-server with the records in the xbase-file diff --git a/contrib/dbase/endian.c b/contrib/dbase/endian.c index f45d958e40..9f32f2ca2a 100644 --- a/contrib/dbase/endian.c +++ b/contrib/dbase/endian.c @@ -1,3 +1,4 @@ +/* $PostgreSQL: pgsql/contrib/dbase/endian.c,v 1.4 2006/03/11 04:38:28 momjian Exp $ */ /* Maarten Boekhold (maarten.boekhold@reuters.com) oktober 1995 */ #include diff --git a/contrib/dblink/dblink.c b/contrib/dblink/dblink.c index 22a3425ee7..42ffd6f3b6 100644 --- a/contrib/dblink/dblink.c +++ b/contrib/dblink/dblink.c @@ -8,6 +8,7 @@ * Darko Prenosil * Shridhar Daithankar * + * $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.54 2006/03/11 04:38:29 momjian Exp $ * Copyright (c) 2001-2006, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * diff --git a/contrib/dblink/dblink.h b/contrib/dblink/dblink.h index 8f2c9ff4c1..b0ab4f0245 100644 --- a/contrib/dblink/dblink.h +++ b/contrib/dblink/dblink.h @@ -8,6 +8,7 @@ * Darko Prenosil * Shridhar Daithankar * + * $PostgreSQL: pgsql/contrib/dblink/dblink.h,v 1.15 2006/03/11 04:38:29 momjian Exp $ * Copyright (c) 2001-2006, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * diff --git a/contrib/dblink/doc/connection b/contrib/dblink/doc/connection index c3ce776fbc..28a93a9038 100644 --- a/contrib/dblink/doc/connection +++ b/contrib/dblink/doc/connection @@ -1,3 +1,4 @@ +$PostgreSQL: pgsql/contrib/dblink/doc/connection,v 1.4 2006/03/11 04:38:29 momjian Exp $ ================================================================== Name diff --git a/contrib/dblink/doc/cursor b/contrib/dblink/doc/cursor index 321c823e21..8745995828 100644 --- a/contrib/dblink/doc/cursor +++ b/contrib/dblink/doc/cursor @@ -1,3 +1,4 @@ +$PostgreSQL: pgsql/contrib/dblink/doc/cursor,v 1.6 2006/03/11 04:38:29 momjian Exp $ ================================================================== Name diff --git a/contrib/dblink/doc/execute b/contrib/dblink/doc/execute index d4c09b22de..021e01ef85 100644 --- a/contrib/dblink/doc/execute +++ b/contrib/dblink/doc/execute @@ -1,3 +1,4 @@ +$PostgreSQL: pgsql/contrib/dblink/doc/execute,v 1.4 2006/03/11 04:38:29 momjian Exp $ ================================================================== Name diff --git a/contrib/dblink/doc/misc b/contrib/dblink/doc/misc index 596c9ecdcf..ae79cf88ba 100644 --- a/contrib/dblink/doc/misc +++ b/contrib/dblink/doc/misc @@ -1,3 +1,4 @@ +$PostgreSQL: pgsql/contrib/dblink/doc/misc,v 1.3 2006/03/11 04:38:29 momjian Exp $ ================================================================== Name diff --git a/contrib/earthdistance/earthdistance.c b/contrib/earthdistance/earthdistance.c index f91eeb5392..d3032bde88 100644 --- a/contrib/earthdistance/earthdistance.c +++ b/contrib/earthdistance/earthdistance.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.c,v 1.10 2006/03/11 04:38:29 momjian Exp $ */ + #include "postgres.h" #include diff --git a/contrib/fulltextindex/fti.c b/contrib/fulltextindex/fti.c index 9e120dc892..938e7748c5 100644 --- a/contrib/fulltextindex/fti.c +++ b/contrib/fulltextindex/fti.c @@ -8,6 +8,8 @@ /* * Trigger function accepts variable number of arguments: * + * $PostgreSQL: pgsql/contrib/fulltextindex/fti.c,v 1.26 2006/03/11 04:38:29 momjian Exp $ + * * 1. relation in which to store the substrings * 2. fields to extract substrings from * diff --git a/contrib/fulltextindex/fti.pl b/contrib/fulltextindex/fti.pl index 4feb51964f..958e3a3273 100644 --- a/contrib/fulltextindex/fti.pl +++ b/contrib/fulltextindex/fti.pl @@ -1,5 +1,7 @@ #!/usr/bin/perl # +# $PostgreSQL: pgsql/contrib/fulltextindex/fti.pl,v 1.9 2006/03/11 04:38:29 momjian Exp $ +# # This script substracts all suffixes of all words in a specific column in a table # and generates output that can be loaded into a new table with the # psql '\copy' command. The new table should have the following structure: diff --git a/contrib/fuzzystrmatch/dmetaphone.c b/contrib/fuzzystrmatch/dmetaphone.c index 216f39b7a7..3fe247e922 100644 --- a/contrib/fuzzystrmatch/dmetaphone.c +++ b/contrib/fuzzystrmatch/dmetaphone.c @@ -1,6 +1,8 @@ /* * This is a port of the Double Metaphone algorithm for use in PostgreSQL. * + * $PostgreSQL: pgsql/contrib/fuzzystrmatch/dmetaphone.c,v 1.7 2006/03/11 04:38:29 momjian Exp $ + * * Double Metaphone computes 2 "sounds like" strings - a primary and an * alternate. In most cases they are the same, but for foreign names * especially they can be a bit different, depending on pronunciation. @@ -48,8 +50,8 @@ /* - * $Revision: 1.6 $ - * $Id: dmetaphone.c,v 1.6 2005/10/15 02:49:05 momjian Exp $ + * $Revision: 1.7 $ + * $Id: dmetaphone.c,v 1.7 2006/03/11 04:38:29 momjian Exp $ */ diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.c b/contrib/fuzzystrmatch/fuzzystrmatch.c index 140e52fa5f..64b6c41b42 100644 --- a/contrib/fuzzystrmatch/fuzzystrmatch.c +++ b/contrib/fuzzystrmatch/fuzzystrmatch.c @@ -5,6 +5,7 @@ * * Joe Conway * + * $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.c,v 1.19 2006/03/11 04:38:29 momjian Exp $ * Copyright (c) 2001-2006, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * diff --git a/contrib/fuzzystrmatch/fuzzystrmatch.h b/contrib/fuzzystrmatch/fuzzystrmatch.h index 40552ba871..42f7f1fa30 100644 --- a/contrib/fuzzystrmatch/fuzzystrmatch.h +++ b/contrib/fuzzystrmatch/fuzzystrmatch.h @@ -5,6 +5,7 @@ * * Joe Conway * + * $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.h,v 1.13 2006/03/11 04:38:29 momjian Exp $ * Copyright (c) 2001-2006, PostgreSQL Global Development Group * ALL RIGHTS RESERVED; * diff --git a/contrib/intagg/int_aggregate.c b/contrib/intagg/int_aggregate.c index afe5dd526f..d081278634 100644 --- a/contrib/intagg/int_aggregate.c +++ b/contrib/intagg/int_aggregate.c @@ -5,6 +5,8 @@ * DMN Digital Music Network. * www.dmn.com * + * $PostgreSQL: pgsql/contrib/intagg/int_aggregate.c,v 1.23 2006/03/11 04:38:29 momjian Exp $ + * * Copyright (C) Digital Music Network * December 20, 2001 * diff --git a/contrib/intarray/bench/create_test.pl b/contrib/intarray/bench/create_test.pl index b39d1fb473..01671bf5a2 100755 --- a/contrib/intarray/bench/create_test.pl +++ b/contrib/intarray/bench/create_test.pl @@ -1,5 +1,7 @@ #!/usr/bin/perl +# $PostgreSQL: pgsql/contrib/intarray/bench/create_test.pl,v 1.4 2006/03/11 04:38:29 momjian Exp $ + use strict; print < #include #include 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 + * $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 + * $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 + * $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 + * $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 + * $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 + * $PostgreSQL: pgsql/contrib/ltree/ltxtquery_op.c,v 1.6 2006/03/11 04:38:29 momjian Exp $ */ #include "ltree.h" diff --git a/contrib/mSQL-interface/mpgsql.c b/contrib/mSQL-interface/mpgsql.c index 1f43f61ea1..b93089c9db 100644 --- a/contrib/mSQL-interface/mpgsql.c +++ b/contrib/mSQL-interface/mpgsql.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/mSQL-interface/mpgsql.c,v 1.8 2006/03/11 04:38:29 momjian Exp $ */ + #include #include #include diff --git a/contrib/mac/createoui b/contrib/mac/createoui index ec1edcfa17..eaf4dbfac0 100755 --- a/contrib/mac/createoui +++ b/contrib/mac/createoui @@ -1,4 +1,7 @@ #! /bin/sh + +# $PostgreSQL: pgsql/contrib/mac/createoui,v 1.3 2006/03/11 04:38:30 momjian Exp $ + # Utility to create manufacturer's oui table # OUI is "Organizationally Unique Identifier" assigned by IEEE. # There are currently three duplicate listings, so we can not enforce diff --git a/contrib/mac/dropoui b/contrib/mac/dropoui index 6fffdc92d6..b06d9cc4e6 100755 --- a/contrib/mac/dropoui +++ b/contrib/mac/dropoui @@ -1,5 +1,7 @@ #! /bin/sh # Utility to remove manufacturer's oui table +# $PostgreSQL: pgsql/contrib/mac/dropoui,v 1.2 2006/03/11 04:38:30 momjian Exp $ + args= diff --git a/contrib/oid2name/oid2name.c b/contrib/oid2name/oid2name.c index 069c1708d6..98d106701e 100644 --- a/contrib/oid2name/oid2name.c +++ b/contrib/oid2name/oid2name.c @@ -4,6 +4,7 @@ * * Originally by * B. Palmer, bpalmer@crimelabs.net 1-17-2001 + * $PostgreSQL: pgsql/contrib/oid2name/oid2name.c,v 1.29 2006/03/11 04:38:30 momjian Exp $ */ #include "postgres_fe.h" diff --git a/contrib/pgcrypto/crypt-blowfish.c b/contrib/pgcrypto/crypt-blowfish.c index 42a694b62f..f8bd00e2da 100644 --- a/contrib/pgcrypto/crypt-blowfish.c +++ b/contrib/pgcrypto/crypt-blowfish.c @@ -1,4 +1,6 @@ /* + * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-blowfish.c,v 1.11 2006/03/11 04:38:30 momjian Exp $ + * * This code comes from John the Ripper password cracker, with reentrant * and crypt(3) interfaces added, but optimizations specific to password * cracking removed. diff --git a/contrib/pgcrypto/crypt-des.c b/contrib/pgcrypto/crypt-des.c index 6ed7188f4a..e5cdc370e9 100644 --- a/contrib/pgcrypto/crypt-des.c +++ b/contrib/pgcrypto/crypt-des.c @@ -1,6 +1,8 @@ /* * FreeSec: libcrypt for NetBSD * + * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-des.c,v 1.14 2006/03/11 04:38:30 momjian Exp $ + * * Copyright (c) 1994 David Burren * All rights reserved. * diff --git a/contrib/pgcrypto/crypt-gensalt.c b/contrib/pgcrypto/crypt-gensalt.c index 01775ee7b7..c7d8511061 100644 --- a/contrib/pgcrypto/crypt-gensalt.c +++ b/contrib/pgcrypto/crypt-gensalt.c @@ -2,6 +2,8 @@ * Written by Solar Designer and placed in the public domain. * See crypt_blowfish.c for more information. * + * $PostgreSQL: pgsql/contrib/pgcrypto/crypt-gensalt.c,v 1.8 2006/03/11 04:38:30 momjian Exp $ + * * This file contains salt generation functions for the traditional and * other common crypt(3) algorithms, except for bcrypt which is defined * entirely in crypt_blowfish.c. diff --git a/contrib/pgcrypto/misc.c b/contrib/pgcrypto/misc.c index 5c803c0d5b..b53a70a509 100644 --- a/contrib/pgcrypto/misc.c +++ b/contrib/pgcrypto/misc.c @@ -2,6 +2,8 @@ * Copyright (c) 1999 * University of California. All rights reserved. * + * $PostgreSQL: pgsql/contrib/pgcrypto/misc.c,v 1.3 2006/03/11 04:38:30 momjian Exp $ + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/contrib/spi/insert_username.c b/contrib/spi/insert_username.c index ce8c21f9be..06de9632bd 100644 --- a/contrib/spi/insert_username.c +++ b/contrib/spi/insert_username.c @@ -1,6 +1,7 @@ /* * insert_username.c * $Modified: Thu Oct 16 08:13:42 1997 by brook $ + * $PostgreSQL: pgsql/contrib/spi/insert_username.c,v 1.13 2006/03/11 04:38:30 momjian Exp $ * * insert user name in response to a trigger * usage: insert_username (column_name) diff --git a/contrib/spi/moddatetime.c b/contrib/spi/moddatetime.c index 14556a8514..43ad810793 100644 --- a/contrib/spi/moddatetime.c +++ b/contrib/spi/moddatetime.c @@ -1,6 +1,8 @@ /* moddatetime.c +$PostgreSQL: pgsql/contrib/spi/moddatetime.c,v 1.12 2006/03/11 04:38:30 momjian Exp $ + What is this? It is a function to be called from a trigger for the purpose of updating a modification datetime stamp in a record when that record is UPDATEd. diff --git a/contrib/tsearch2/crc32.c b/contrib/tsearch2/crc32.c index c314019b7f..2bccacc104 100644 --- a/contrib/tsearch2/crc32.c +++ b/contrib/tsearch2/crc32.c @@ -1,5 +1,7 @@ /* Both POSIX and CRC32 checksums */ +/* $PostgreSQL: pgsql/contrib/tsearch2/crc32.c,v 1.3 2006/03/11 04:38:30 momjian Exp $ */ + #include #include #include diff --git a/contrib/tsearch2/crc32.h b/contrib/tsearch2/crc32.h index 97254a4a90..420c9594ac 100644 --- a/contrib/tsearch2/crc32.h +++ b/contrib/tsearch2/crc32.h @@ -1,6 +1,8 @@ #ifndef _CRC32_H #define _CRC32_H +/* $PostgreSQL: pgsql/contrib/tsearch2/crc32.h,v 1.2 2006/03/11 04:38:30 momjian Exp $ */ + /* Returns crc32 of data block */ extern unsigned int crc32_sz(char *buf, int size); diff --git a/contrib/tsearch2/dict.c b/contrib/tsearch2/dict.c index f221d174ef..9d912353e9 100644 --- a/contrib/tsearch2/dict.c +++ b/contrib/tsearch2/dict.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/dict.c,v 1.11 2006/03/11 04:38:30 momjian Exp $ */ + /* * interface functions to dictionary * Teodor Sigaev diff --git a/contrib/tsearch2/dict.h b/contrib/tsearch2/dict.h index 8aef0b0cb7..7a6153c453 100644 --- a/contrib/tsearch2/dict.h +++ b/contrib/tsearch2/dict.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/dict.h,v 1.6 2006/03/11 04:38:30 momjian Exp $ */ + #ifndef __DICT_H__ #define __DICT_H__ #include "postgres.h" diff --git a/contrib/tsearch2/dict_ex.c b/contrib/tsearch2/dict_ex.c index 334bb5248d..ccb7f3fcbe 100644 --- a/contrib/tsearch2/dict_ex.c +++ b/contrib/tsearch2/dict_ex.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/dict_ex.c,v 1.8 2006/03/11 04:38:30 momjian Exp $ */ + /* * example of dictionary * Teodor Sigaev diff --git a/contrib/tsearch2/dict_ispell.c b/contrib/tsearch2/dict_ispell.c index 0e887da584..301b19d592 100644 --- a/contrib/tsearch2/dict_ispell.c +++ b/contrib/tsearch2/dict_ispell.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/dict_ispell.c,v 1.10 2006/03/11 04:38:30 momjian Exp $ */ + /* * ISpell interface * Teodor Sigaev diff --git a/contrib/tsearch2/dict_snowball.c b/contrib/tsearch2/dict_snowball.c index 92e25b6e2e..bab941598f 100644 --- a/contrib/tsearch2/dict_snowball.c +++ b/contrib/tsearch2/dict_snowball.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/dict_snowball.c,v 1.11 2006/03/11 04:38:30 momjian Exp $ */ + /* * example of Snowball dictionary * http://snowball.tartarus.org/ diff --git a/contrib/tsearch2/dict_syn.c b/contrib/tsearch2/dict_syn.c index b0c50334ea..d19686d63e 100644 --- a/contrib/tsearch2/dict_syn.c +++ b/contrib/tsearch2/dict_syn.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/dict_syn.c,v 1.9 2006/03/11 04:38:30 momjian Exp $ */ + /* * ISpell interface * Teodor Sigaev diff --git a/contrib/tsearch2/gendict/dict_snowball.c.IN b/contrib/tsearch2/gendict/dict_snowball.c.IN index 818fd6b157..6a0fce9a3e 100644 --- a/contrib/tsearch2/gendict/dict_snowball.c.IN +++ b/contrib/tsearch2/gendict/dict_snowball.c.IN @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/gendict/dict_snowball.c.IN,v 1.4 2006/03/11 04:38:30 momjian Exp $ */ + /* * example of Snowball dictionary * http://snowball.tartarus.org/ diff --git a/contrib/tsearch2/gendict/dict_tmpl.c.IN b/contrib/tsearch2/gendict/dict_tmpl.c.IN index 9d90df712b..694b7363e0 100644 --- a/contrib/tsearch2/gendict/dict_tmpl.c.IN +++ b/contrib/tsearch2/gendict/dict_tmpl.c.IN @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/gendict/dict_tmpl.c.IN,v 1.5 2006/03/11 04:38:30 momjian Exp $ */ + /* * example of dictionary * Teodor Sigaev diff --git a/contrib/tsearch2/gistidx.c b/contrib/tsearch2/gistidx.c index 6aabae2777..7cc370bf84 100644 --- a/contrib/tsearch2/gistidx.c +++ b/contrib/tsearch2/gistidx.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/gistidx.c,v 1.13 2006/03/11 04:38:30 momjian Exp $ */ + #include "postgres.h" #include diff --git a/contrib/tsearch2/gistidx.h b/contrib/tsearch2/gistidx.h index 142318b8c8..9545946e31 100644 --- a/contrib/tsearch2/gistidx.h +++ b/contrib/tsearch2/gistidx.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/gistidx.h,v 1.7 2006/03/11 04:38:30 momjian Exp $ */ + #ifndef __GISTIDX_H__ #define __GISTIDX_H__ diff --git a/contrib/tsearch2/snowball/english_stem.c b/contrib/tsearch2/snowball/english_stem.c index ccb3d12988..9f6f65491c 100644 --- a/contrib/tsearch2/snowball/english_stem.c +++ b/contrib/tsearch2/snowball/english_stem.c @@ -1,3 +1,4 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/snowball/english_stem.c,v 1.8 2006/03/11 04:38:30 momjian Exp $ */ /* This file was generated automatically by the Snowball to ANSI C compiler */ diff --git a/contrib/tsearch2/snowball/english_stem.h b/contrib/tsearch2/snowball/english_stem.h index c889c7bfa9..6918a73dd7 100644 --- a/contrib/tsearch2/snowball/english_stem.h +++ b/contrib/tsearch2/snowball/english_stem.h @@ -1,3 +1,4 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/snowball/english_stem.h,v 1.6 2006/03/11 04:38:30 momjian Exp $ */ /* This file was generated automatically by the Snowball to ANSI C compiler */ diff --git a/contrib/tsearch2/snowball/header.h b/contrib/tsearch2/snowball/header.h index 3889ede53e..7939fbb8fa 100644 --- a/contrib/tsearch2/snowball/header.h +++ b/contrib/tsearch2/snowball/header.h @@ -1,3 +1,4 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/snowball/header.h,v 1.7 2006/03/11 04:38:30 momjian Exp $ */ #include diff --git a/contrib/tsearch2/wordparser/deflex.c b/contrib/tsearch2/wordparser/deflex.c index 8f93d277a1..004069f48e 100644 --- a/contrib/tsearch2/wordparser/deflex.c +++ b/contrib/tsearch2/wordparser/deflex.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/deflex.c,v 1.4 2006/03/11 04:38:30 momjian Exp $ */ + #include "deflex.h" const char *lex_descr[] = { diff --git a/contrib/tsearch2/wordparser/deflex.h b/contrib/tsearch2/wordparser/deflex.h index 893f843051..72852e4485 100644 --- a/contrib/tsearch2/wordparser/deflex.h +++ b/contrib/tsearch2/wordparser/deflex.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/deflex.h,v 1.3 2006/03/11 04:38:30 momjian Exp $ */ + #ifndef __DEFLEX_H__ #define __DEFLEX_H__ diff --git a/contrib/tsearch2/wordparser/parser.c b/contrib/tsearch2/wordparser/parser.c index 8a5fcdabe6..2efb493752 100644 --- a/contrib/tsearch2/wordparser/parser.c +++ b/contrib/tsearch2/wordparser/parser.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/parser.c,v 1.10 2006/03/11 04:38:30 momjian Exp $ */ + #include "postgres.h" #include "utils/builtins.h" diff --git a/contrib/tsearch2/wordparser/parser.h b/contrib/tsearch2/wordparser/parser.h index baeabf72cd..c40717a80f 100644 --- a/contrib/tsearch2/wordparser/parser.h +++ b/contrib/tsearch2/wordparser/parser.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/contrib/tsearch2/wordparser/parser.h,v 1.11 2006/03/11 04:38:30 momjian Exp $ */ + #ifndef __PARSER_H__ #define __PARSER_H__ diff --git a/doc/src/sgml/fixrtf b/doc/src/sgml/fixrtf index 2c1172408c..d5beeea4e6 100755 --- a/doc/src/sgml/fixrtf +++ b/doc/src/sgml/fixrtf @@ -1,5 +1,8 @@ #!/bin/sh # fixrtf + +# $PostgreSQL: pgsql/doc/src/sgml/fixrtf,v 2.3 2006/03/11 04:38:30 momjian Exp $ + # Repair (slightly) damaged RTF generated by jade # Applixware wants the s0 stylesheet defined, whereas # M$Word does not care about it. diff --git a/doc/src/sgml/mk_feature_tables.pl b/doc/src/sgml/mk_feature_tables.pl index 445acdb2e9..7b4f45f3de 100644 --- a/doc/src/sgml/mk_feature_tables.pl +++ b/doc/src/sgml/mk_feature_tables.pl @@ -1,5 +1,7 @@ # /usr/bin/perl -w +# $PostgreSQL: pgsql/doc/src/sgml/mk_feature_tables.pl,v 2.2 2006/03/11 04:38:30 momjian Exp $ + my $yesno = $ARGV[0]; open PACK, $ARGV[1] or die; diff --git a/src/backend/port/aix/mkldexport.sh b/src/backend/port/aix/mkldexport.sh index 5eca61be60..01986a0c40 100755 --- a/src/backend/port/aix/mkldexport.sh +++ b/src/backend/port/aix/mkldexport.sh @@ -3,6 +3,8 @@ # mkldexport # create an AIX exports file from an object file # +# $PostgreSQL: pgsql/src/backend/port/aix/mkldexport.sh,v 1.9 2006/03/11 04:38:31 momjian Exp $ +# # Usage: # mkldexport objectfile [location] # where diff --git a/src/backend/port/dynloader/cygwin.c b/src/backend/port/dynloader/cygwin.c index 9a1436fa4a..ba014928b6 100644 --- a/src/backend/port/dynloader/cygwin.c +++ b/src/backend/port/dynloader/cygwin.c @@ -1 +1,3 @@ +/* $PostgreSQL: pgsql/src/backend/port/dynloader/cygwin.c,v 1.2 2006/03/11 04:38:31 momjian Exp $ */ + /* Dummy file used for nothing at this point; see cygwin.h */ diff --git a/src/backend/port/dynloader/freebsd.c b/src/backend/port/dynloader/freebsd.c index 9341ef2444..71e11906e5 100644 --- a/src/backend/port/dynloader/freebsd.c +++ b/src/backend/port/dynloader/freebsd.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/port/dynloader/freebsd.c,v 1.25 2006/03/11 04:38:31 momjian Exp $ */ + /* * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1990 The Regents of the University of California. diff --git a/src/backend/port/dynloader/irix.c b/src/backend/port/dynloader/irix.c index d5a654b0cf..ba71f8ebe5 100644 --- a/src/backend/port/dynloader/irix.c +++ b/src/backend/port/dynloader/irix.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/port/dynloader/irix.c,v 1.2 2006/03/11 04:38:31 momjian Exp $ */ + /* Dummy file used for nothing at this point * * see irix.h diff --git a/src/backend/port/dynloader/netbsd.c b/src/backend/port/dynloader/netbsd.c index f5b837d179..ff09c65538 100644 --- a/src/backend/port/dynloader/netbsd.c +++ b/src/backend/port/dynloader/netbsd.c @@ -3,6 +3,8 @@ * Portions Copyright (c) 1990 The Regents of the University of California. * All rights reserved. * + * $PostgreSQL: pgsql/src/backend/port/dynloader/netbsd.c,v 1.19 2006/03/11 04:38:31 momjian Exp $ + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/backend/port/dynloader/nextstep.c b/src/backend/port/dynloader/nextstep.c index 09b317daf9..850b3a1166 100644 --- a/src/backend/port/dynloader/nextstep.c +++ b/src/backend/port/dynloader/nextstep.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/port/dynloader/nextstep.c,v 1.6 2006/03/11 04:38:31 momjian Exp $ */ + #include "postgres.h" #include "mach-o/rld.h" diff --git a/src/backend/port/dynloader/nextstep.h b/src/backend/port/dynloader/nextstep.h index f1345d0788..287c42df6f 100644 --- a/src/backend/port/dynloader/nextstep.h +++ b/src/backend/port/dynloader/nextstep.h @@ -3,9 +3,9 @@ * port_protos.h * port-specific prototypes for NeXT * - -------------------------------------------------------------------------- + * $PostgreSQL: pgsql/src/backend/port/dynloader/nextstep.h,v 1.9 2006/03/11 04:38:31 momjian Exp $ */ + #ifndef PORT_PROTOS_H #define PORT_PROTOS_H diff --git a/src/backend/port/dynloader/openbsd.c b/src/backend/port/dynloader/openbsd.c index f5b837d179..196245b308 100644 --- a/src/backend/port/dynloader/openbsd.c +++ b/src/backend/port/dynloader/openbsd.c @@ -3,6 +3,8 @@ * Portions Copyright (c) 1990 The Regents of the University of California. * All rights reserved. * + * $PostgreSQL: pgsql/src/backend/port/dynloader/openbsd.c,v 1.19 2006/03/11 04:38:31 momjian Exp $ + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/src/backend/port/dynloader/osf.c b/src/backend/port/dynloader/osf.c index 92007c6af1..ef4c5dfca9 100644 --- a/src/backend/port/dynloader/osf.c +++ b/src/backend/port/dynloader/osf.c @@ -1,4 +1,5 @@ /* Dummy file used for nothing at this point * * see alpha.h + * $PostgreSQL: pgsql/src/backend/port/dynloader/osf.c,v 1.2 2006/03/11 04:38:31 momjian Exp $ */ diff --git a/src/backend/utils/mb/Unicode/euc_cn_to_utf8.map b/src/backend/utils/mb/Unicode/euc_cn_to_utf8.map index fcbf486c74..05df71a5cc 100644 --- a/src/backend/utils/mb/Unicode/euc_cn_to_utf8.map +++ b/src/backend/utils/mb/Unicode/euc_cn_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/euc_cn_to_utf8.map,v 1.3 2006/03/11 04:38:31 momjian Exp $ */ + static pg_local_to_utf LUmapEUC_CN[ 7445 ] = { {0xa1a1, 0xe38080}, {0xa1a2, 0xe38081}, diff --git a/src/backend/utils/mb/Unicode/euc_jp_to_utf8.map b/src/backend/utils/mb/Unicode/euc_jp_to_utf8.map index 9aee2c7fd9..73762eea1b 100644 --- a/src/backend/utils/mb/Unicode/euc_jp_to_utf8.map +++ b/src/backend/utils/mb/Unicode/euc_jp_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/euc_jp_to_utf8.map,v 1.5 2006/03/11 04:38:31 momjian Exp $ */ + static pg_local_to_utf LUmapEUC_JP[] = { {0x8ea1, 0xefbda1}, {0x8ea2, 0xefbda2}, diff --git a/src/backend/utils/mb/Unicode/euc_kr_to_utf8.map b/src/backend/utils/mb/Unicode/euc_kr_to_utf8.map index 32b31cc1df..e1d36243fe 100644 --- a/src/backend/utils/mb/Unicode/euc_kr_to_utf8.map +++ b/src/backend/utils/mb/Unicode/euc_kr_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/euc_kr_to_utf8.map,v 1.4 2006/03/11 04:38:31 momjian Exp $ */ + static pg_local_to_utf LUmapEUC_KR[ 8224 ] = { {0xa1a1, 0xe38080}, {0xa1a2, 0xe38081}, diff --git a/src/backend/utils/mb/Unicode/euc_tw_to_utf8.map b/src/backend/utils/mb/Unicode/euc_tw_to_utf8.map index a2959b26b1..4680581518 100644 --- a/src/backend/utils/mb/Unicode/euc_tw_to_utf8.map +++ b/src/backend/utils/mb/Unicode/euc_tw_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/euc_tw_to_utf8.map,v 1.3 2006/03/11 04:38:31 momjian Exp $ */ + static pg_local_to_utf LUmapEUC_TW[ 23575 ] = { {0xa1a1, 0xe38080}, {0xa1a2, 0xefbc8c}, diff --git a/src/backend/utils/mb/Unicode/gb18030_to_utf8.map b/src/backend/utils/mb/Unicode/gb18030_to_utf8.map index 3aea9f4ec8..8b9dab0bd2 100644 --- a/src/backend/utils/mb/Unicode/gb18030_to_utf8.map +++ b/src/backend/utils/mb/Unicode/gb18030_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/gb18030_to_utf8.map,v 1.5 2006/03/11 04:38:31 momjian Exp $ */ + static pg_local_to_utf LUmapGB18030[ 63360 ] = { {0x8140, 0xe4b882}, {0x8141, 0xe4b884}, diff --git a/src/backend/utils/mb/Unicode/gbk_to_utf8.map b/src/backend/utils/mb/Unicode/gbk_to_utf8.map index f2c16cbce7..0aece2cb6d 100644 --- a/src/backend/utils/mb/Unicode/gbk_to_utf8.map +++ b/src/backend/utils/mb/Unicode/gbk_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/gbk_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */ + static pg_local_to_utf LUmapGBK[ 21792 ] = { {0x0080, 0xe282ac}, {0x8140, 0xe4b882}, diff --git a/src/backend/utils/mb/Unicode/iso8859_10_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_10_to_utf8.map index fd0a0a3676..2dddf18732 100644 --- a/src/backend/utils/mb/Unicode/iso8859_10_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_10_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_10_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_10[ 128 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_13_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_13_to_utf8.map index 77bc5aeac5..cadc974eb4 100644 --- a/src/backend/utils/mb/Unicode/iso8859_13_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_13_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_13_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_13[ 128 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_14_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_14_to_utf8.map index d3f2054bbb..5637c221f6 100644 --- a/src/backend/utils/mb/Unicode/iso8859_14_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_14_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_14_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_14[ 128 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_15_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_15_to_utf8.map index 594e22338f..a6acd5a0de 100644 --- a/src/backend/utils/mb/Unicode/iso8859_15_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_15_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_15_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_15[ 128 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_16_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_16_to_utf8.map index ac3d8d1b8a..a438aabf7f 100644 --- a/src/backend/utils/mb/Unicode/iso8859_16_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_16_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_16_to_utf8.map,v 1.2 2006/03/11 04:38:37 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_16[ 128 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_2_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_2_to_utf8.map index 3cbf164cbb..9e0bb4b27d 100644 --- a/src/backend/utils/mb/Unicode/iso8859_2_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_2_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_2_to_utf8.map,v 1.3 2006/03/11 04:38:37 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_2[ 128 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_3_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_3_to_utf8.map index 2e8cceb849..92bf410229 100644 --- a/src/backend/utils/mb/Unicode/iso8859_3_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_3_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_3_to_utf8.map,v 1.3 2006/03/11 04:38:38 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_3[ 121 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_4_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_4_to_utf8.map index 59341ef720..a45496557d 100644 --- a/src/backend/utils/mb/Unicode/iso8859_4_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_4_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_4_to_utf8.map,v 1.3 2006/03/11 04:38:38 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_4[ 128 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_5_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_5_to_utf8.map index 6518287a2a..ff6357e421 100644 --- a/src/backend/utils/mb/Unicode/iso8859_5_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_5_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_5_to_utf8.map,v 1.3 2006/03/11 04:38:38 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_5[ 128 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_6_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_6_to_utf8.map index f847f7f208..9d44a4f871 100644 --- a/src/backend/utils/mb/Unicode/iso8859_6_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_6_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_6_to_utf8.map,v 1.2 2006/03/11 04:38:38 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_6[ 83 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_7_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_7_to_utf8.map index 9f2db13fb2..dd7afb97f1 100644 --- a/src/backend/utils/mb/Unicode/iso8859_7_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_7_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_7_to_utf8.map,v 1.3 2006/03/11 04:38:38 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_7[ 125 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_8_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_8_to_utf8.map index a47af89514..af9745f2da 100644 --- a/src/backend/utils/mb/Unicode/iso8859_8_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_8_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_8_to_utf8.map,v 1.2 2006/03/11 04:38:38 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_8[ 92 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/iso8859_9_to_utf8.map b/src/backend/utils/mb/Unicode/iso8859_9_to_utf8.map index 9e002adb84..28304cfcdb 100644 --- a/src/backend/utils/mb/Unicode/iso8859_9_to_utf8.map +++ b/src/backend/utils/mb/Unicode/iso8859_9_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/iso8859_9_to_utf8.map,v 1.2 2006/03/11 04:38:38 momjian Exp $ */ + static pg_local_to_utf LUmapISO8859_9[ 128 ] = { {0x0080, 0xc280}, {0x0081, 0xc281}, diff --git a/src/backend/utils/mb/Unicode/johab_to_utf8.map b/src/backend/utils/mb/Unicode/johab_to_utf8.map index 915633d9ed..b9d07cf030 100644 --- a/src/backend/utils/mb/Unicode/johab_to_utf8.map +++ b/src/backend/utils/mb/Unicode/johab_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/johab_to_utf8.map,v 1.2 2006/03/11 04:38:38 momjian Exp $ */ + static pg_local_to_utf LUmapJOHAB[ 17046 ] = { {0x8444, 0xe384b3}, {0x8446, 0xe384b5}, diff --git a/src/backend/utils/mb/Unicode/koi8r_to_utf8.map b/src/backend/utils/mb/Unicode/koi8r_to_utf8.map index c02aec45fc..af442210e7 100644 --- a/src/backend/utils/mb/Unicode/koi8r_to_utf8.map +++ b/src/backend/utils/mb/Unicode/koi8r_to_utf8.map @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/backend/utils/mb/Unicode/koi8r_to_utf8.map,v 1.3 2006/03/11 04:38:38 momjian Exp $ */ + static pg_local_to_utf LUmapKOI8R[ 128 ] = { {0x0080, 0xe29480}, {0x0081, 0xe29482}, diff --git a/src/bin/pgevent/pgmsgevent.h b/src/bin/pgevent/pgmsgevent.h index 94e0bcf7e5..e7290cad13 100644 --- a/src/bin/pgevent/pgmsgevent.h +++ b/src/bin/pgevent/pgmsgevent.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/bin/pgevent/pgmsgevent.h,v 1.4 2006/03/11 04:38:38 momjian Exp $ */ + /* */ /* Values are 32 bit values layed out as follows: */ /* */ diff --git a/src/include/catalog/pg_trigger.h b/src/include/catalog/pg_trigger.h index 8aaaf4c092..1126546aef 100644 --- a/src/include/catalog/pg_trigger.h +++ b/src/include/catalog/pg_trigger.h @@ -5,6 +5,7 @@ * * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California + * $PostgreSQL: pgsql/src/include/catalog/pg_trigger.h,v 1.25 2006/03/11 04:38:38 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index 9d35643663..c79624e8fa 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/include/pg_config.h.win32,v 1.28 2006/03/11 04:38:38 momjian Exp $ */ + #ifndef pg_config_h_win32__ #define pg_config_h_win32__ /* diff --git a/src/include/port/darwin.h b/src/include/port/darwin.h index af4ce9b385..e52a872681 100644 --- a/src/include/port/darwin.h +++ b/src/include/port/darwin.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/include/port/darwin.h,v 1.10 2006/03/11 04:38:38 momjian Exp $ */ + #define __darwin__ 1 #if HAVE_DECL_F_FULLFSYNC /* not present before OS X 10.3 */ diff --git a/src/include/port/dgux.h b/src/include/port/dgux.h index e0e0c74de1..73096530f2 100644 --- a/src/include/port/dgux.h +++ b/src/include/port/dgux.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/include/port/dgux.h,v 1.10 2006/03/11 04:38:38 momjian Exp $ */ + #ifndef BIG_ENDIAN #define BIG_ENDIAN 4321 #endif diff --git a/src/include/port/freebsd.h b/src/include/port/freebsd.h index 8b13789179..a70df321cc 100644 --- a/src/include/port/freebsd.h +++ b/src/include/port/freebsd.h @@ -1 +1 @@ - +/* $PostgreSQL: pgsql/src/include/port/freebsd.h,v 1.16 2006/03/11 04:38:38 momjian Exp $ */ diff --git a/src/include/port/hpux.h b/src/include/port/hpux.h index e96c5324a3..6c8cdeb2fb 100644 --- a/src/include/port/hpux.h +++ b/src/include/port/hpux.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/include/port/hpux.h,v 1.23 2006/03/11 04:38:38 momjian Exp $ */ + #ifndef BIG_ENDIAN #define BIG_ENDIAN 4321 #endif diff --git a/src/include/port/irix.h b/src/include/port/irix.h index 8b13789179..9f1a412345 100644 --- a/src/include/port/irix.h +++ b/src/include/port/irix.h @@ -1 +1 @@ - +/* $PostgreSQL: pgsql/src/include/port/irix.h,v 1.3 2006/03/11 04:38:38 momjian Exp $ */ diff --git a/src/include/port/linux.h b/src/include/port/linux.h index 8b13789179..a4d8f247bc 100644 --- a/src/include/port/linux.h +++ b/src/include/port/linux.h @@ -1 +1,2 @@ +/* $PostgreSQL: pgsql/src/include/port/linux.h,v 1.41 2006/03/11 04:38:38 momjian Exp $ */ diff --git a/src/include/port/netbsd.h b/src/include/port/netbsd.h index 8b13789179..59b78cccd3 100644 --- a/src/include/port/netbsd.h +++ b/src/include/port/netbsd.h @@ -1 +1,2 @@ +/* $PostgreSQL: pgsql/src/include/port/netbsd.h,v 1.15 2006/03/11 04:38:38 momjian Exp $ */ diff --git a/src/include/port/nextstep.h b/src/include/port/nextstep.h index 12ce891237..47a3c8856f 100644 --- a/src/include/port/nextstep.h +++ b/src/include/port/nextstep.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/include/port/nextstep.h,v 1.8 2006/03/11 04:38:38 momjian Exp $ */ + #include "libc.h" #include #if defined(__STRICT_ANSI__) diff --git a/src/include/port/openbsd.h b/src/include/port/openbsd.h index 8b13789179..412f5615a6 100644 --- a/src/include/port/openbsd.h +++ b/src/include/port/openbsd.h @@ -1 +1 @@ - +/* $PostgreSQL: pgsql/src/include/port/openbsd.h,v 1.14 2006/03/11 04:38:38 momjian Exp $ */ diff --git a/src/include/port/osf.h b/src/include/port/osf.h index 2368f3b593..4b45d1a8f6 100644 --- a/src/include/port/osf.h +++ b/src/include/port/osf.h @@ -1,2 +1,4 @@ +/* $PostgreSQL: pgsql/src/include/port/osf.h,v 1.9 2006/03/11 04:38:38 momjian Exp $ */ + #define NOFIXADE #define DISABLE_XOPEN_NLS diff --git a/src/include/port/win32/arpa/inet.h b/src/include/port/win32/arpa/inet.h index dc979c0537..b61c4ebffd 100644 --- a/src/include/port/win32/arpa/inet.h +++ b/src/include/port/win32/arpa/inet.h @@ -1 +1,3 @@ +/* $PostgreSQL: pgsql/src/include/port/win32/arpa/inet.h,v 1.2 2006/03/11 04:38:39 momjian Exp $ */ + #include diff --git a/src/include/port/win32/dlfcn.h b/src/include/port/win32/dlfcn.h index 8b13789179..55a59c202b 100644 --- a/src/include/port/win32/dlfcn.h +++ b/src/include/port/win32/dlfcn.h @@ -1 +1,3 @@ +/* $PostgreSQL: pgsql/src/include/port/win32/dlfcn.h,v 1.3 2006/03/11 04:38:38 momjian Exp $ */ + diff --git a/src/include/port/win32/grp.h b/src/include/port/win32/grp.h index 8b13789179..162734f440 100644 --- a/src/include/port/win32/grp.h +++ b/src/include/port/win32/grp.h @@ -1 +1,3 @@ +/* $PostgreSQL: pgsql/src/include/port/win32/grp.h,v 1.3 2006/03/11 04:38:38 momjian Exp $ */ + diff --git a/src/include/port/win32/netdb.h b/src/include/port/win32/netdb.h index 8b13789179..0243e3eefb 100644 --- a/src/include/port/win32/netdb.h +++ b/src/include/port/win32/netdb.h @@ -1 +1,2 @@ +/* $PostgreSQL: pgsql/src/include/port/win32/netdb.h,v 1.3 2006/03/11 04:38:38 momjian Exp $ */ diff --git a/src/include/port/win32/netinet/in.h b/src/include/port/win32/netinet/in.h index dc979c0537..19a8a650e1 100644 --- a/src/include/port/win32/netinet/in.h +++ b/src/include/port/win32/netinet/in.h @@ -1 +1,3 @@ +/* $PostgreSQL: pgsql/src/include/port/win32/netinet/in.h,v 1.3 2006/03/11 04:38:39 momjian Exp $ */ + #include diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c index 0cb4510042..4604c6e797 100644 --- a/src/interfaces/ecpg/compatlib/informix.c +++ b/src/interfaces/ecpg/compatlib/informix.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/informix.c,v 1.41 2006/03/11 04:38:39 momjian Exp $ */ + #include #include #include diff --git a/src/interfaces/ecpg/ecpglib/extern.h b/src/interfaces/ecpg/ecpglib/extern.h index cde99c9f3e..48c956cca0 100644 --- a/src/interfaces/ecpg/ecpglib/extern.h +++ b/src/interfaces/ecpg/ecpglib/extern.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/extern.h,v 1.16 2006/03/11 04:38:39 momjian Exp $ */ + #ifndef _ECPG_LIB_EXTERN_H #define _ECPG_LIB_EXTERN_H diff --git a/src/interfaces/ecpg/include/datetime.h b/src/interfaces/ecpg/include/datetime.h index b4108c5d2b..c3a7062675 100644 --- a/src/interfaces/ecpg/include/datetime.h +++ b/src/interfaces/ecpg/include/datetime.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/datetime.h,v 1.12 2006/03/11 04:38:39 momjian Exp $ */ + #ifndef _ECPG_DATETIME_H #define _ECPG_DATETIME_H diff --git a/src/interfaces/ecpg/include/decimal.h b/src/interfaces/ecpg/include/decimal.h index 80cef55d1e..9944f052e3 100644 --- a/src/interfaces/ecpg/include/decimal.h +++ b/src/interfaces/ecpg/include/decimal.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/decimal.h,v 1.14 2006/03/11 04:38:39 momjian Exp $ */ + #ifndef _ECPG_DECIMAL_H #define _ECPG_DECIMAL_H diff --git a/src/interfaces/ecpg/include/ecpg_informix.h b/src/interfaces/ecpg/include/ecpg_informix.h index 6b0b492642..4441c56b33 100644 --- a/src/interfaces/ecpg/include/ecpg_informix.h +++ b/src/interfaces/ecpg/include/ecpg_informix.h @@ -1,5 +1,6 @@ /* * This file contains stuff needed to be as compatible to Informix as possible. + * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpg_informix.h,v 1.18 2006/03/11 04:38:39 momjian Exp $ */ #ifndef _ECPG_INFORMIX_H #define _ECPG_INFORMIX_H diff --git a/src/interfaces/ecpg/include/ecpgerrno.h b/src/interfaces/ecpg/include/ecpgerrno.h index 87a30ef6ca..9b5adb9981 100644 --- a/src/interfaces/ecpg/include/ecpgerrno.h +++ b/src/interfaces/ecpg/include/ecpgerrno.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpgerrno.h,v 1.27 2006/03/11 04:38:39 momjian Exp $ */ + #ifndef _ECPG_ERRNO_H #define _ECPG_ERRNO_H diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index 326c205159..981aabefa7 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -1,6 +1,7 @@ /* * this is a small part of c.h since we don't want to leak all postgres * definitions into ecpg programs + * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.66 2006/03/11 04:38:39 momjian Exp $ */ #ifndef _ECPGLIB_H diff --git a/src/interfaces/ecpg/include/ecpgtype.h b/src/interfaces/ecpg/include/ecpgtype.h index 6f521718a3..d7b8cce89a 100644 --- a/src/interfaces/ecpg/include/ecpgtype.h +++ b/src/interfaces/ecpg/include/ecpgtype.h @@ -4,6 +4,8 @@ * * All types that can be handled for host variable declarations has to * be handled eventually. + * + * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpgtype.h,v 1.36 2006/03/11 04:38:39 momjian Exp $ */ /* diff --git a/src/interfaces/ecpg/include/pgtypes_date.h b/src/interfaces/ecpg/include/pgtypes_date.h index 8a98c710d9..10fe53c8c8 100644 --- a/src/interfaces/ecpg/include/pgtypes_date.h +++ b/src/interfaces/ecpg/include/pgtypes_date.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_date.h,v 1.9 2006/03/11 04:38:39 momjian Exp $ */ + #ifndef PGTYPES_DATETIME #define PGTYPES_DATETIME diff --git a/src/interfaces/ecpg/include/pgtypes_error.h b/src/interfaces/ecpg/include/pgtypes_error.h index 4a1008adc3..ad0824f0fd 100644 --- a/src/interfaces/ecpg/include/pgtypes_error.h +++ b/src/interfaces/ecpg/include/pgtypes_error.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_error.h,v 1.7 2006/03/11 04:38:39 momjian Exp $ */ + #define PGTYPES_NUM_OVERFLOW 301 #define PGTYPES_NUM_BAD_NUMERIC 302 #define PGTYPES_NUM_DIVIDE_ZERO 303 diff --git a/src/interfaces/ecpg/include/pgtypes_interval.h b/src/interfaces/ecpg/include/pgtypes_interval.h index 2abaf60b1d..222f160fc3 100644 --- a/src/interfaces/ecpg/include/pgtypes_interval.h +++ b/src/interfaces/ecpg/include/pgtypes_interval.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_interval.h,v 1.9 2006/03/11 04:38:39 momjian Exp $ */ + #ifndef PGTYPES_INTERVAL #define PGTYPES_INTERVAL diff --git a/src/interfaces/ecpg/include/pgtypes_numeric.h b/src/interfaces/ecpg/include/pgtypes_numeric.h index 51b70a529b..ac069232f1 100644 --- a/src/interfaces/ecpg/include/pgtypes_numeric.h +++ b/src/interfaces/ecpg/include/pgtypes_numeric.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_numeric.h,v 1.15 2006/03/11 04:38:39 momjian Exp $ */ + #ifndef PGTYPES_NUMERIC #define PGTYPES_NUMERIC diff --git a/src/interfaces/ecpg/include/pgtypes_timestamp.h b/src/interfaces/ecpg/include/pgtypes_timestamp.h index 3965fa48bd..5644b9eae7 100644 --- a/src/interfaces/ecpg/include/pgtypes_timestamp.h +++ b/src/interfaces/ecpg/include/pgtypes_timestamp.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/include/pgtypes_timestamp.h,v 1.10 2006/03/11 04:38:39 momjian Exp $ */ + #ifndef PGTYPES_TIMESTAMP #define PGTYPES_TIMESTAMP diff --git a/src/interfaces/ecpg/pgtypeslib/datetime.c b/src/interfaces/ecpg/pgtypeslib/datetime.c index bf636ba240..2f933297c2 100644 --- a/src/interfaces/ecpg/pgtypeslib/datetime.c +++ b/src/interfaces/ecpg/pgtypeslib/datetime.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/datetime.c,v 1.27 2006/03/11 04:38:39 momjian Exp $ */ + #include "postgres_fe.h" #include diff --git a/src/interfaces/ecpg/pgtypeslib/dt.h b/src/interfaces/ecpg/pgtypeslib/dt.h index f8eefa93f4..95793aabc3 100644 --- a/src/interfaces/ecpg/pgtypeslib/dt.h +++ b/src/interfaces/ecpg/pgtypeslib/dt.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/dt.h,v 1.34 2006/03/11 04:38:39 momjian Exp $ */ + #ifndef DT_H #define DT_H diff --git a/src/interfaces/ecpg/pgtypeslib/dt_common.c b/src/interfaces/ecpg/pgtypeslib/dt_common.c index dc3f55c666..2d69e3ce57 100644 --- a/src/interfaces/ecpg/pgtypeslib/dt_common.c +++ b/src/interfaces/ecpg/pgtypeslib/dt_common.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/dt_common.c,v 1.34 2006/03/11 04:38:39 momjian Exp $ */ + #include "postgres_fe.h" #include diff --git a/src/interfaces/ecpg/pgtypeslib/extern.h b/src/interfaces/ecpg/pgtypeslib/extern.h index 689a3e8955..86f6768299 100644 --- a/src/interfaces/ecpg/pgtypeslib/extern.h +++ b/src/interfaces/ecpg/pgtypeslib/extern.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/extern.h,v 1.8 2006/03/11 04:38:39 momjian Exp $ */ + #ifndef __PGTYPES_COMMON_H__ #define __PGTYPES_COMMON_H__ diff --git a/src/interfaces/ecpg/pgtypeslib/interval.c b/src/interfaces/ecpg/pgtypeslib/interval.c index fd915bb3dd..32de6adc23 100644 --- a/src/interfaces/ecpg/pgtypeslib/interval.c +++ b/src/interfaces/ecpg/pgtypeslib/interval.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/interval.c,v 1.31 2006/03/11 04:38:39 momjian Exp $ */ + #include "postgres_fe.h" #include #include diff --git a/src/interfaces/ecpg/pgtypeslib/numeric.c b/src/interfaces/ecpg/pgtypeslib/numeric.c index 8ba0a093ec..c35fe9e3a1 100644 --- a/src/interfaces/ecpg/pgtypeslib/numeric.c +++ b/src/interfaces/ecpg/pgtypeslib/numeric.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/numeric.c,v 1.25 2006/03/11 04:38:40 momjian Exp $ */ + #include "postgres_fe.h" #include #include diff --git a/src/interfaces/ecpg/preproc/descriptor.c b/src/interfaces/ecpg/preproc/descriptor.c index a89eec2780..f81d3c330c 100644 --- a/src/interfaces/ecpg/preproc/descriptor.c +++ b/src/interfaces/ecpg/preproc/descriptor.c @@ -1,6 +1,8 @@ /* * functions needed for descriptor handling * + * $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/descriptor.c,v 1.24 2006/03/11 04:38:40 momjian Exp $ + * * since descriptor might be either a string constant or a string var * we need to check for a constant if we expect a constant */ diff --git a/src/interfaces/ecpg/preproc/extern.h b/src/interfaces/ecpg/preproc/extern.h index 06cc74f204..3581b35e3e 100644 --- a/src/interfaces/ecpg/preproc/extern.h +++ b/src/interfaces/ecpg/preproc/extern.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/extern.h,v 1.63 2006/03/11 04:38:40 momjian Exp $ */ + #ifndef _ECPG_PREPROC_EXTERN_H #define _ECPG_PREPROC_EXTERN_H diff --git a/src/interfaces/ecpg/preproc/output.c b/src/interfaces/ecpg/preproc/output.c index 06531e976d..e251d7e145 100644 --- a/src/interfaces/ecpg/preproc/output.c +++ b/src/interfaces/ecpg/preproc/output.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/output.c,v 1.17 2006/03/11 04:38:40 momjian Exp $ */ + #include "postgres_fe.h" #include "extern.h" diff --git a/src/interfaces/ecpg/test/dt_test.pgc b/src/interfaces/ecpg/test/dt_test.pgc index cdd257f7fb..b642d3c1a5 100644 --- a/src/interfaces/ecpg/test/dt_test.pgc +++ b/src/interfaces/ecpg/test/dt_test.pgc @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/dt_test.pgc,v 1.9 2006/03/11 04:38:40 momjian Exp $ */ + #include #include #include diff --git a/src/interfaces/ecpg/test/header_test.h b/src/interfaces/ecpg/test/header_test.h index aacc8ba7ce..0f8527ec6d 100644 --- a/src/interfaces/ecpg/test/header_test.h +++ b/src/interfaces/ecpg/test/header_test.h @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/header_test.h,v 1.12 2006/03/11 04:38:40 momjian Exp $ */ + #include "stdlib.h" static void diff --git a/src/interfaces/ecpg/test/num_test.pgc b/src/interfaces/ecpg/test/num_test.pgc index f3991ccc8a..030d2dcfda 100644 --- a/src/interfaces/ecpg/test/num_test.pgc +++ b/src/interfaces/ecpg/test/num_test.pgc @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/num_test.pgc,v 1.11 2006/03/11 04:38:40 momjian Exp $ */ + #include #include #include diff --git a/src/interfaces/ecpg/test/perftest.pgc b/src/interfaces/ecpg/test/perftest.pgc index 7fb22588c8..1ff59d60a4 100644 --- a/src/interfaces/ecpg/test/perftest.pgc +++ b/src/interfaces/ecpg/test/perftest.pgc @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/test/perftest.pgc,v 1.11 2006/03/11 04:38:40 momjian Exp $ */ + #include #include #include diff --git a/src/interfaces/libpq/libpqdll.c b/src/interfaces/libpq/libpqdll.c index f145d3e0e4..231b6a0e9b 100644 --- a/src/interfaces/libpq/libpqdll.c +++ b/src/interfaces/libpq/libpqdll.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/interfaces/libpq/libpqdll.c,v 1.10 2006/03/11 04:38:40 momjian Exp $ */ + #define WIN32_LEAN_AND_MEAN #include #include diff --git a/src/pl/tcl/modules/pltcl_delmod.in b/src/pl/tcl/modules/pltcl_delmod.in index e65a6742e3..4f0280f511 100644 --- a/src/pl/tcl/modules/pltcl_delmod.in +++ b/src/pl/tcl/modules/pltcl_delmod.in @@ -1,4 +1,6 @@ #! /bin/sh +# $PostgreSQL: pgsql/src/pl/tcl/modules/pltcl_delmod.in,v 1.3 2006/03/11 04:38:40 momjian Exp $ +# # Start tclsh \ exec @TCLSH@ "$0" "$@" diff --git a/src/pl/tcl/modules/pltcl_listmod.in b/src/pl/tcl/modules/pltcl_listmod.in index dbb93db73b..eb27a864e9 100644 --- a/src/pl/tcl/modules/pltcl_listmod.in +++ b/src/pl/tcl/modules/pltcl_listmod.in @@ -1,4 +1,6 @@ #! /bin/sh +# $PostgreSQL: pgsql/src/pl/tcl/modules/pltcl_listmod.in,v 1.3 2006/03/11 04:38:40 momjian Exp $ +# # Start tclsh \ exec @TCLSH@ "$0" "$@" diff --git a/src/port/crypt.c b/src/port/crypt.c index d3c01d2f38..7139ecf3d1 100644 --- a/src/port/crypt.c +++ b/src/port/crypt.c @@ -1,3 +1,4 @@ +/* $PostgreSQL: pgsql/src/port/crypt.c,v 1.15 2006/03/11 04:38:40 momjian Exp $ */ /* $NetBSD: crypt.c,v 1.18 2001/03/01 14:37:35 wiz Exp $ */ /* diff --git a/src/port/getopt.c b/src/port/getopt.c index 28a0d0a476..1665aab638 100644 --- a/src/port/getopt.c +++ b/src/port/getopt.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/port/getopt.c,v 1.10 2006/03/11 04:38:40 momjian Exp $ */ + /* This is used by psql under Win32 */ /* diff --git a/src/template/cygwin b/src/template/cygwin index e649d88c1b..276fa8081d 100644 --- a/src/template/cygwin +++ b/src/template/cygwin @@ -1,3 +1,5 @@ +# $PostgreSQL: pgsql/src/template/cygwin,v 1.7 2006/03/11 04:38:40 momjian Exp $ + SRCH_LIB="/usr/local/lib" # This is required to link pg_dump because it finds pg_toupper() in diff --git a/src/template/darwin b/src/template/darwin index baf462baf6..cb9afb20f3 100644 --- a/src/template/darwin +++ b/src/template/darwin @@ -1,3 +1,5 @@ +# $PostgreSQL: pgsql/src/template/darwin,v 1.10 2006/03/11 04:38:40 momjian Exp $ + # Apple's cpp-precomp seems a tad broken, so don't use it # (Note: on OS X before 10.2, you might need -traditional-cpp instead) CC="$CC -no-cpp-precomp" diff --git a/src/template/dgux b/src/template/dgux index e69de29bb2..43a19c6c2c 100644 --- a/src/template/dgux +++ b/src/template/dgux @@ -0,0 +1,3 @@ +# $PostgreSQL: pgsql/src/template/dgux,v 1.12 2006/03/11 04:38:40 momjian Exp $ + + diff --git a/src/template/freebsd b/src/template/freebsd index 718359e07c..72a1e0cd6e 100644 --- a/src/template/freebsd +++ b/src/template/freebsd @@ -1,3 +1,5 @@ +# $PostgreSQL: pgsql/src/template/freebsd,v 1.35 2006/03/11 04:38:41 momjian Exp $ + case $host_cpu in alpha*) CFLAGS="-O";; # alpha has problems with -O2 esac diff --git a/src/template/hpux b/src/template/hpux index 775c55a935..d8b5529b87 100644 --- a/src/template/hpux +++ b/src/template/hpux @@ -1,3 +1,5 @@ +# $PostgreSQL: pgsql/src/template/hpux,v 1.15 2006/03/11 04:38:41 momjian Exp $ + CPPFLAGS="-D_XOPEN_SOURCE_EXTENDED" if test "$GCC" != yes ; then diff --git a/src/template/linux b/src/template/linux index dfb391ea54..6293e6a03a 100644 --- a/src/template/linux +++ b/src/template/linux @@ -1,2 +1,4 @@ +# $PostgreSQL: pgsql/src/template/linux,v 1.28 2006/03/11 04:38:41 momjian Exp $ + # Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise CPPFLAGS="-D_GNU_SOURCE" diff --git a/src/template/netbsd b/src/template/netbsd index c45260ca13..6e0ff48860 100644 --- a/src/template/netbsd +++ b/src/template/netbsd @@ -1,2 +1,3 @@ +# $PostgreSQL: pgsql/src/template/netbsd,v 1.20 2006/03/11 04:38:41 momjian Exp $ # tools/thread/thread_test must be run diff --git a/src/template/nextstep b/src/template/nextstep index d6b3c35e6c..68b8ac58ab 100644 --- a/src/template/nextstep +++ b/src/template/nextstep @@ -1,3 +1,5 @@ +# $PostgreSQL: pgsql/src/template/nextstep,v 1.9 2006/03/11 04:38:41 momjian Exp $ + AROPT=rc SHARED_LIB= DLSUFFIX=.o diff --git a/src/template/osf b/src/template/osf index e845cfecea..d558389e8d 100644 --- a/src/template/osf +++ b/src/template/osf @@ -1,3 +1,5 @@ +# $PostgreSQL: pgsql/src/template/osf,v 1.20 2006/03/11 04:38:41 momjian Exp $ + if test "$GCC" != yes ; then CC="$CC -std" CFLAGS="-O -ieee" diff --git a/src/test/bench/perquery b/src/test/bench/perquery index e6f5c43c30..09a1e757c1 100644 --- a/src/test/bench/perquery +++ b/src/test/bench/perquery @@ -1,5 +1,7 @@ #!/bin/sh +# $PostgreSQL: pgsql/src/test/bench/perquery,v 1.3 2006/03/11 04:38:41 momjian Exp $ + egrep 'x = "|elapse' | \ awk 'BEGIN { x = 0; y = 0; z = 0; a = 0; } \ /.*elapse.*/ {x = $2 + x; y = $4 + y; z = $6 + z;} \ diff --git a/src/test/performance/sqls/inssimple b/src/test/performance/sqls/inssimple index 5e95a0489d..ed07fe4a07 100644 --- a/src/test/performance/sqls/inssimple +++ b/src/test/performance/sqls/inssimple @@ -1,4 +1,5 @@ +# $PostgreSQL: pgsql/src/test/performance/sqls/inssimple,v 1.2 2006/03/11 04:38:41 momjian Exp $ # # Transactions are unsupported by MySQL - so for insertion of # 8192 rows, 1 INSERT per Xaction, we returned "Transactions unsupported" diff --git a/src/test/regress/parallel_schedule b/src/test/regress/parallel_schedule index fef609711b..85a1bbe9f3 100644 --- a/src/test/regress/parallel_schedule +++ b/src/test/regress/parallel_schedule @@ -1,5 +1,6 @@ # ---------- # The first group of parallel test +# $PostgreSQL: pgsql/src/test/regress/parallel_schedule,v 1.32 2006/03/11 04:38:41 momjian Exp $ # ---------- test: boolean char name varchar text int2 int4 int8 oid float4 float8 bit numeric diff --git a/src/timezone/data/etcetera b/src/timezone/data/etcetera index 431206ec3d..0c344a34a9 100644 --- a/src/timezone/data/etcetera +++ b/src/timezone/data/etcetera @@ -1,5 +1,7 @@ # @(#)etcetera 7.12 +# $PostgreSQL: pgsql/src/timezone/data/etcetera,v 1.3 2006/03/11 04:38:41 momjian Exp $ +# # These entries are mostly present for historical reasons, so that # people in areas not otherwise covered by the tz files could "zic -l" # to a time zone that was right for their area. These days, the diff --git a/src/timezone/data/europe b/src/timezone/data/europe index ec6720a804..10f783b752 100644 --- a/src/timezone/data/europe +++ b/src/timezone/data/europe @@ -1,5 +1,7 @@ # @(#)europe 7.95 +# $PostgreSQL: pgsql/src/timezone/data/europe,v 1.4 2006/03/11 04:38:41 momjian Exp $ +# # This data is by no means authoritative; if you think you know better, # go ahead and edit the file (and please send any changes to # tz@elsie.nci.nih.gov for general use in the future). diff --git a/src/timezone/data/factory b/src/timezone/data/factory index ba27c63269..e0ea3aec52 100644 --- a/src/timezone/data/factory +++ b/src/timezone/data/factory @@ -1,5 +1,7 @@ # @(#)factory 7.3 +# $PostgreSQL: pgsql/src/timezone/data/factory,v 1.2 2006/03/11 04:38:41 momjian Exp $ + # For companies who don't want to put time zone specification in # their installation procedures. When users run date, they'll get the message. # Also useful for the "comp.sources" version. diff --git a/src/timezone/data/iso3166.tab b/src/timezone/data/iso3166.tab index 07b43fc7c4..f4d06d5e18 100644 --- a/src/timezone/data/iso3166.tab +++ b/src/timezone/data/iso3166.tab @@ -1,5 +1,7 @@ # ISO 3166 alpha-2 country codes # +# $PostgreSQL: pgsql/src/timezone/data/iso3166.tab,v 1.4 2006/03/11 04:38:41 momjian Exp $ +# # @(#)iso3166.tab 1.17 # # From Paul Eggert (2004-06-14): diff --git a/src/timezone/data/leapseconds b/src/timezone/data/leapseconds index a1078837d7..a21772d0db 100644 --- a/src/timezone/data/leapseconds +++ b/src/timezone/data/leapseconds @@ -2,6 +2,8 @@ # Allowance for leapseconds added to each timezone file. +# $PostgreSQL: pgsql/src/timezone/data/leapseconds,v 1.4 2006/03/11 04:38:41 momjian Exp $ + # The International Earth Rotation Service periodically uses leap seconds # to keep UTC to within 0.9 s of UT1 # (which measures the true angular orientation of the earth in space); see diff --git a/src/tools/backend/index.html b/src/tools/backend/index.html index db53174465..f6ea48b7ab 100644 --- a/src/tools/backend/index.html +++ b/src/tools/backend/index.html @@ -1,3 +1,4 @@ + diff --git a/src/tools/ccsym b/src/tools/ccsym index acac603e58..a90550abde 100755 --- a/src/tools/ccsym +++ b/src/tools/ccsym @@ -1,4 +1,7 @@ #!/bin/sh + +# $PostgreSQL: pgsql/src/tools/ccsym,v 1.7 2006/03/11 04:38:41 momjian Exp $ + trap "rm -f /tmp/$$.*" 0 1 2 3 15 cd /tmp cat >$$.c <' *.sgml ref/*.sgml grep '<[^]a-z0-9"/!-]' *.sgml ref/*.sgml diff --git a/src/tools/find_static b/src/tools/find_static index f2b10e7a86..90a98ac3ab 100755 --- a/src/tools/find_static +++ b/src/tools/find_static @@ -1,4 +1,7 @@ #!/bin/sh + +# $PostgreSQL: pgsql/src/tools/find_static,v 1.4 2006/03/11 04:38:41 momjian Exp $ + trap "rm -f /tmp/$$" 0 1 2 3 15 # This script finds functions that are either never called, or diff --git a/src/tools/find_typedef b/src/tools/find_typedef index ff575fefa5..2a56dcd488 100755 --- a/src/tools/find_typedef +++ b/src/tools/find_typedef @@ -1,4 +1,7 @@ #!/bin/sh + +# $PostgreSQL: pgsql/src/tools/find_typedef,v 1.6 2006/03/11 04:38:41 momjian Exp $ + # This script attempts to find all typedef's in the postgres binaries # by using 'nm' to report all typedef debugging symbols. # diff --git a/src/tools/findoidjoins/make_oidjoins_check b/src/tools/findoidjoins/make_oidjoins_check index b6a720a504..3bba1f8d96 100755 --- a/src/tools/findoidjoins/make_oidjoins_check +++ b/src/tools/findoidjoins/make_oidjoins_check @@ -1,5 +1,7 @@ #! /bin/sh +# $PostgreSQL: pgsql/src/tools/findoidjoins/make_oidjoins_check,v 1.2 2006/03/11 04:38:42 momjian Exp $ + # You first run findoidjoins on the template1 database, and send that # output into this script to generate a list of SQL statements. diff --git a/src/tools/make_ctags b/src/tools/make_ctags index 7f7c8f55ee..4deb97f3a8 100755 --- a/src/tools/make_ctags +++ b/src/tools/make_ctags @@ -1,4 +1,7 @@ #!/bin/sh + +# $PostgreSQL: pgsql/src/tools/make_ctags,v 1.11 2006/03/11 04:38:41 momjian Exp $ + trap "rm -f /tmp/$$" 0 1 2 3 15 rm -f ./tags diff --git a/src/tools/make_diff/README b/src/tools/make_diff/README index c287133a00..2d66b36ddb 100644 --- a/src/tools/make_diff/README +++ b/src/tools/make_diff/README @@ -1,3 +1,5 @@ +$PostgreSQL: pgsql/src/tools/make_diff/README,v 1.3 2006/03/11 04:38:42 momjian Exp $ + Bruce Momjian Here are some of the scripts I use to make development easier. diff --git a/src/tools/make_diff/cporig b/src/tools/make_diff/cporig index 0b188ac3e5..a4f2f24d63 100755 --- a/src/tools/make_diff/cporig +++ b/src/tools/make_diff/cporig @@ -1,4 +1,7 @@ -: +#!/bin/sh + +# $PostgreSQL: pgsql/src/tools/make_diff/cporig,v 1.2 2006/03/11 04:38:42 momjian Exp $ + for FILE do if [ ! -f "$FILE.orig" ] diff --git a/src/tools/make_diff/difforig b/src/tools/make_diff/difforig index a70b8bed4e..a65d7b5dba 100755 --- a/src/tools/make_diff/difforig +++ b/src/tools/make_diff/difforig @@ -1,4 +1,7 @@ -: +#!/bin/sh + +# $PostgreSQL: pgsql/src/tools/make_diff/difforig,v 1.2 2006/03/11 04:38:42 momjian Exp $ + if [ "$#" -eq 0 ] then APATH="." else APATH="$1" diff --git a/src/tools/make_diff/rmorig b/src/tools/make_diff/rmorig index f6d0d4eff6..5d405d0504 100755 --- a/src/tools/make_diff/rmorig +++ b/src/tools/make_diff/rmorig @@ -1,4 +1,7 @@ -: +#!/bin/sh + +# $PostgreSQL: pgsql/src/tools/make_diff/rmorig,v 1.2 2006/03/11 04:38:42 momjian Exp $ + if [ "$#" -eq 0 ] then APATH="." else APATH="$1" diff --git a/src/tools/make_etags b/src/tools/make_etags index e81bdb6f9a..f2db9f1758 100755 --- a/src/tools/make_etags +++ b/src/tools/make_etags @@ -1,4 +1,7 @@ #!/bin/sh + +# $PostgreSQL: pgsql/src/tools/make_etags,v 1.3 2006/03/11 04:38:41 momjian Exp $ + trap "rm -f /tmp/$$" 0 1 2 3 15 rm -f ./TAGS find `pwd`/ -type f -name '*.[chyl]' -print | \ diff --git a/src/tools/make_keywords b/src/tools/make_keywords index dc16695129..4aba19eb02 100755 --- a/src/tools/make_keywords +++ b/src/tools/make_keywords @@ -1,5 +1,7 @@ #!/bin/sh +# $PostgreSQL: pgsql/src/tools/make_keywords,v 1.2 2006/03/11 04:38:41 momjian Exp $ + cat < or "" +# $PostgreSQL: pgsql/src/tools/pginclude/pgfixinclude,v 1.5 2006/03/11 04:38:42 momjian Exp $ trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15 find . \( -name CVS -a -prune \) -o -type f -print | diff --git a/src/tools/pginclude/pgrminclude b/src/tools/pginclude/pgrminclude index 6504aad82a..991bd9eec7 100755 --- a/src/tools/pginclude/pgrminclude +++ b/src/tools/pginclude/pgrminclude @@ -1,6 +1,8 @@ : # remove extra #include's +# $PostgreSQL: pgsql/src/tools/pginclude/pgrminclude,v 1.4 2006/03/11 04:38:42 momjian Exp $ + trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15 find . \( -name CVS -a -prune \) -o -type f -print | grep -v '\./postgres.h' | diff --git a/src/tools/pgindent/indent.bsd.patch b/src/tools/pgindent/indent.bsd.patch index bb1ba73f77..095b65123d 100644 --- a/src/tools/pgindent/indent.bsd.patch +++ b/src/tools/pgindent/indent.bsd.patch @@ -1,3 +1,4 @@ +$PostgreSQL: pgsql/src/tools/pgindent/indent.bsd.patch,v 1.8 2006/03/11 04:38:42 momjian Exp $ This patch contains several fixes to NetBSD's indent and should be applied before using pgindent. diff --git a/src/tools/pgindent/pgcppindent b/src/tools/pgindent/pgcppindent index ee27cf5295..e624efb0e4 100755 --- a/src/tools/pgindent/pgcppindent +++ b/src/tools/pgindent/pgcppindent @@ -1,5 +1,7 @@ #!/bin/sh +# $PostgreSQL: pgsql/src/tools/pgindent/pgcppindent,v 1.2 2006/03/11 04:38:42 momjian Exp $ + trap "rm -f /tmp/$$ /tmp/$$a" 0 1 2 3 15 entab /dev/null if [ "$?" -ne 0 ] diff --git a/src/tools/pgindent/pgindent b/src/tools/pgindent/pgindent index 530c6d2703..d6a38c1293 100755 --- a/src/tools/pgindent/pgindent +++ b/src/tools/pgindent/pgindent @@ -1,5 +1,7 @@ #!/bin/sh +# $PostgreSQL: pgsql/src/tools/pgindent/pgindent,v 1.87 2006/03/11 04:38:42 momjian Exp $ + # Known bugs: # # Blank line is added after, seen as a function definition, no space diff --git a/src/tools/pgindent/pgjindent b/src/tools/pgindent/pgjindent index d4e3777cc8..6ae6a6e3e0 100755 --- a/src/tools/pgindent/pgjindent +++ b/src/tools/pgindent/pgjindent @@ -1,5 +1,7 @@ #!/bin/sh +# $PostgreSQL: pgsql/src/tools/pgindent/pgjindent,v 1.3 2006/03/11 04:38:42 momjian Exp $ + trap "rm -f /tmp/$$ /tmp/$$a" 0 1 2 3 15 entab /dev/null if [ "$?" -ne 0 ] diff --git a/src/tools/pgtest b/src/tools/pgtest index bc28be2383..9a50bea446 100755 --- a/src/tools/pgtest +++ b/src/tools/pgtest @@ -1,4 +1,6 @@ -: +#!/bin/sh + +# $PostgreSQL: pgsql/src/tools/pgtest,v 1.6 2006/03/11 04:38:41 momjian Exp $ # This runs a build/initdb/regression test suite # diff --git a/src/tutorial/funcs.c b/src/tutorial/funcs.c index a988ad431b..0ca31ac19c 100644 --- a/src/tutorial/funcs.c +++ b/src/tutorial/funcs.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/tutorial/funcs.c,v 1.14 2006/03/11 04:38:42 momjian Exp $ */ + /****************************************************************************** These are user-defined functions that can be bound to a Postgres backend and called by Postgres to execute SQL functions of the same name. diff --git a/src/tutorial/funcs_new.c b/src/tutorial/funcs_new.c index 9c63abaf14..9a49034063 100644 --- a/src/tutorial/funcs_new.c +++ b/src/tutorial/funcs_new.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/tutorial/funcs_new.c,v 1.7 2006/03/11 04:38:42 momjian Exp $ */ + /****************************************************************************** These are user-defined functions that can be bound to a Postgres backend and called by Postgres to execute SQL functions of the same name. diff --git a/src/utils/dllinit.c b/src/utils/dllinit.c index 3a0097d28e..66859149d5 100644 --- a/src/utils/dllinit.c +++ b/src/utils/dllinit.c @@ -1,3 +1,5 @@ +/* $PostgreSQL: pgsql/src/utils/dllinit.c,v 1.17 2006/03/11 04:38:42 momjian Exp $ */ + #ifdef __CYGWIN__ #include #endif