Remove cvs keywords from all files.

This commit is contained in:
Magnus Hagander 2010-09-20 22:08:53 +02:00
parent cecde97577
commit 9f2e211386
2182 changed files with 2182 additions and 2182 deletions

View File

@ -1,7 +1,7 @@
#
# PostgreSQL top level makefile
#
# $PostgreSQL: pgsql/GNUmakefile.in,v 1.58 2010/03/30 00:10:46 petere Exp $
# GNUmakefile.in
#
subdir =

2
aclocal.m4 vendored
View File

@ -1,4 +1,4 @@
dnl $PostgreSQL: pgsql/aclocal.m4,v 1.18 2004/04/23 18:15:47 momjian Exp $
dnl aclocal.m4
m4_include([config/ac_func_accept_argtypes.m4])
m4_include([config/acx_pthread.m4])
m4_include([config/c-compiler.m4])

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/config/Makefile,v 1.3 2009/08/26 22:24:42 petere Exp $
# config/Makefile
subdir = config
top_builddir = ..

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/config/ac_func_accept_argtypes.m4,v 1.6 2003/11/29 19:51:17 pgsql Exp $
# config/ac_func_accept_argtypes.m4
# This comes from the official Autoconf macro archive at
# <http://research.cys.de/autoconf-archive/>
# (I removed the $ before the Id CVS keyword below.)

View File

@ -1,5 +1,5 @@
# Macros to detect C compiler features
# $PostgreSQL: pgsql/config/c-compiler.m4,v 1.23 2010/08/19 05:57:33 petere Exp $
# config/c-compiler.m4
# PGAC_C_SIGNED

View File

@ -1,5 +1,5 @@
# Macros that test various C library quirks
# $PostgreSQL: pgsql/config/c-library.m4,v 1.34 2009/07/02 18:55:40 petere Exp $
# config/c-library.m4
# PGAC_VAR_INT_TIMEZONE

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/config/docbook.m4,v 1.11 2009/08/04 22:04:37 petere Exp $
# config/docbook.m4
# PGAC_PROG_JADE
# --------------

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/config/general.m4,v 1.11 2009/07/02 18:55:40 petere Exp $
# config/general.m4
# This file defines new macros to process configure command line
# arguments, to replace the brain-dead AC_ARG_WITH and AC_ARG_ENABLE.

View File

@ -1,7 +1,7 @@
#!/bin/sh
# install - install a program, script, or datafile
# $PostgreSQL: pgsql/config/install-sh,v 1.8 2009/08/26 22:24:42 petere Exp $
# config/install-sh
scriptversion=2009-08-26.20

View File

@ -1,6 +1,6 @@
#! /bin/sh
# $PostgreSQL: pgsql/config/missing,v 1.7 2010/02/22 21:16:50 momjian Exp $
# config/missing
# This is *not* the GNU `missing' script, although it is similar in
# concept. You can call it from the makefiles to get consistent

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/config/perl.m4,v 1.9 2010/02/23 18:35:06 tgl Exp $
# config/perl.m4
# PGAC_PATH_PERL

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/config/programs.m4,v 1.28 2010/02/22 21:16:50 momjian Exp $
# config/programs.m4
# PGAC_PATH_BISON

View File

@ -1,7 +1,7 @@
#
# Autoconf macros for configuring the build of Python extension modules
#
# $PostgreSQL: pgsql/config/python.m4,v 1.18 2010/03/17 22:02:44 petere Exp $
# config/python.m4
#
# PGAC_PATH_PYTHON

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/config/tcl.m4,v 1.8 2009/02/03 01:24:57 adunstan Exp $
# config/tcl.m4
# Autoconf macros to check for Tcl related things

View File

@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.634 2010/09/11 15:48:04 heikki Exp $
dnl configure.in
dnl
dnl Developers, please strive to achieve this order:
dnl

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/Makefile,v 1.93 2010/06/14 16:17:56 sriggs Exp $
# contrib/Makefile
subdir = contrib
top_builddir = ..

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/adminpack/Makefile,v 1.6 2007/11/10 23:59:50 momjian Exp $
# contrib/adminpack/Makefile
MODULE_big = adminpack
PG_CPPFLAGS = -I$(libpq_srcdir)

View File

@ -8,7 +8,7 @@
* Author: Andreas Pflug <pgadmin@pse-consulting.de>
*
* IDENTIFICATION
* $PostgreSQL: pgsql/contrib/adminpack/adminpack.c,v 1.13 2010/01/02 16:57:32 momjian Exp $
* contrib/adminpack/adminpack.c
*
*-------------------------------------------------------------------------
*/

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/adminpack/adminpack.sql.in,v 1.6 2007/11/13 04:24:27 momjian Exp $ */
/* contrib/adminpack/adminpack.sql.in */
/* ***********************************************
* Administrative functions for PostgreSQL

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/adminpack/uninstall_adminpack.sql,v 1.4 2007/11/13 04:24:27 momjian Exp $ */
/* contrib/adminpack/uninstall_adminpack.sql */
DROP FUNCTION pg_catalog.pg_file_write(text, text, bool) ;
DROP FUNCTION pg_catalog.pg_file_rename(text, text, text) ;

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/auto_explain/Makefile,v 1.1 2008/11/19 02:59:28 tgl Exp $
# contrib/auto_explain/Makefile
MODULE_big = auto_explain
OBJS = auto_explain.o

View File

@ -6,7 +6,7 @@
* Copyright (c) 2008-2010, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgsql/contrib/auto_explain/auto_explain.c,v 1.14 2010/02/26 02:00:31 momjian Exp $
* contrib/auto_explain/auto_explain.c
*
*-------------------------------------------------------------------------
*/

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/btree_gin/Makefile,v 1.1 2009/03/25 23:20:01 tgl Exp $
# contrib/btree_gin/Makefile
MODULE_big = btree_gin
OBJS = btree_gin.o

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gin/btree_gin.c,v 1.4 2010/01/07 04:53:34 tgl Exp $
* contrib/btree_gin/btree_gin.c
*/
#include "postgres.h"

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/btree_gin/btree_gin.sql.in,v 1.1 2009/03/25 23:20:01 tgl Exp $ */
/* contrib/btree_gin/btree_gin.sql.in */
-- Adjust this setting to control where the objects get created.
SET search_path = public;

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/btree_gin/uninstall_btree_gin.sql,v 1.1 2009/03/25 23:20:01 tgl Exp $ */
/* contrib/btree_gin/uninstall_btree_gin.sql */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/btree_gist/Makefile,v 1.13 2010/08/03 19:53:19 rhaas Exp $
# contrib/btree_gist/Makefile
MODULE_big = btree_gist

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_bit.c,v 1.11 2009/08/04 18:49:50 tgl Exp $
* contrib/btree_gist/btree_bit.c
*/
#include "btree_gist.h"
#include "btree_utils_var.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_bytea.c,v 1.10 2009/08/04 18:49:50 tgl Exp $
* contrib/btree_gist/btree_bytea.c
*/
#include "btree_gist.h"
#include "btree_utils_var.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_cash.c,v 1.11 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_cash.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_date.c,v 1.9 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_date.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_float4.c,v 1.10 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_float4.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_float8.c,v 1.10 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_float8.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.c,v 1.13 2009/06/11 14:48:50 momjian Exp $
* contrib/btree_gist/btree_gist.c
*/
#include "btree_gist.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.h,v 1.10 2010/08/02 16:26:48 rhaas Exp $
* contrib/btree_gist/btree_gist.h
*/
#ifndef __BTREE_GIST_H__
#define __BTREE_GIST_H__

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/btree_gist/btree_gist.sql.in,v 1.22 2010/08/02 16:26:48 rhaas Exp $ */
/* contrib/btree_gist/btree_gist.sql.in */
-- Adjust this setting to control where the objects get created.
SET search_path = public;

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_inet.c,v 1.12 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_inet.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_int2.c,v 1.10 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_int2.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_int4.c,v 1.10 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_int4.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_int8.c,v 1.10 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_int8.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_interval.c,v 1.14 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_interval.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_macaddr.c,v 1.10 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_macaddr.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_numeric.c,v 1.14 2010/07/30 04:30:23 rhaas Exp $
* contrib/btree_gist/btree_numeric.c
*/
#include "btree_gist.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_oid.c,v 1.10 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_oid.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_text.c,v 1.12 2009/06/11 14:48:50 momjian Exp $
* contrib/btree_gist/btree_text.c
*/
#include "btree_gist.h"
#include "btree_utils_var.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_time.c,v 1.18 2010/02/26 02:00:31 momjian Exp $
* contrib/btree_gist/btree_time.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_ts.c,v 1.19 2010/02/26 02:00:32 momjian Exp $
* contrib/btree_gist/btree_ts.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_num.c,v 1.13 2010/08/02 16:26:48 rhaas Exp $
* contrib/btree_gist/btree_utils_num.c
*/
#include "btree_gist.h"
#include "btree_utils_num.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_num.h,v 1.14 2009/06/11 14:48:50 momjian Exp $
* contrib/btree_gist/btree_utils_num.h
*/
#ifndef __BTREE_UTILS_NUM_H__
#define __BTREE_UTILS_NUM_H__

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_var.c,v 1.24 2010/08/02 16:26:48 rhaas Exp $
* contrib/btree_gist/btree_utils_var.c
*/
#include "btree_gist.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/btree_gist/btree_utils_var.h,v 1.9 2009/06/11 14:48:50 momjian Exp $
* contrib/btree_gist/btree_utils_var.h
*/
#ifndef __BTREE_UTILS_VAR_H__
#define __BTREE_UTILS_VAR_H__

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/btree_gist/uninstall_btree_gist.sql,v 1.5 2008/04/14 17:05:32 tgl Exp $ */
/* contrib/btree_gist/uninstall_btree_gist.sql */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/chkpass/Makefile,v 1.10 2007/11/10 23:59:50 momjian Exp $
# contrib/chkpass/Makefile
MODULE_big = chkpass
OBJS = chkpass.o

View File

@ -4,7 +4,7 @@
* darcy@druid.net
* http://www.druid.net/darcy/
*
* $PostgreSQL: pgsql/contrib/chkpass/chkpass.c,v 1.21 2009/06/11 14:48:50 momjian Exp $
* contrib/chkpass/chkpass.c
* best viewed with tabs set to 4
*/

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/chkpass/chkpass.sql.in,v 1.10 2010/07/28 20:34:34 petere Exp $ */
/* contrib/chkpass/chkpass.sql.in */
-- Adjust this setting to control where the objects get created.
SET search_path = public;

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/chkpass/uninstall_chkpass.sql,v 1.5 2007/11/13 04:24:27 momjian Exp $ */
/* contrib/chkpass/uninstall_chkpass.sql */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/citext/Makefile,v 1.1 2008/07/29 18:31:20 tgl Exp $
# contrib/citext/Makefile
MODULES = citext
DATA_built = citext.sql

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/citext/citext.c,v 1.2 2009/06/11 14:48:50 momjian Exp $
* contrib/citext/citext.c
*/
#include "postgres.h"

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/citext/citext.sql.in,v 1.3 2008/09/05 18:25:16 tgl Exp $ */
/* contrib/citext/citext.sql.in */
-- Adjust this setting to control where the objects get created.
SET search_path = public;

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/citext/uninstall_citext.sql,v 1.3 2008/09/05 18:25:16 tgl Exp $ */
/* contrib/citext/uninstall_citext.sql */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/contrib-global.mk,v 1.10 2005/09/27 17:43:31 tgl Exp $
# contrib/contrib-global.mk
NO_PGXS = 1
include $(top_srcdir)/src/makefiles/pgxs.mk

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.23 2009/08/28 20:26:18 petere Exp $
# contrib/cube/Makefile
MODULE_big = cube
OBJS= cube.o cubeparse.o

View File

@ -1,5 +1,5 @@
/******************************************************************************
$PostgreSQL: pgsql/contrib/cube/cube.c,v 1.37 2009/06/11 14:48:50 momjian Exp $
contrib/cube/cube.c
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

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/cube/cube.sql.in,v 1.25 2009/06/11 18:30:03 tgl Exp $ */
/* contrib/cube/cube.sql.in */
-- Adjust this setting to control where the objects get created.
SET search_path = public;

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/cube/cubedata.h,v 1.10 2009/06/11 14:48:50 momjian Exp $ */
/* contrib/cube/cubedata.h */
#define CUBE_MAX_DIM (100)

View File

@ -2,7 +2,7 @@
/* NdBox = [(lowerleft),(upperright)] */
/* [(xLL(1)...xLL(N)),(xUR(1)...xUR(n))] */
/* $PostgreSQL: pgsql/contrib/cube/cubeparse.y,v 1.19 2008/11/26 08:45:11 petere Exp $ */
/* contrib/cube/cubeparse.y */
#define YYPARSE_PARAM result /* need this to pass a pointer (void *) to yyparse */
#define YYSTYPE char *

View File

@ -1,7 +1,7 @@
%{
/*
** A scanner for EMP-style numeric ranges
* $PostgreSQL: pgsql/contrib/cube/cubescan.l,v 1.12 2008/08/25 23:12:45 tgl Exp $
* contrib/cube/cubescan.l
*/
#include "postgres.h"

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/cube/uninstall_cube.sql,v 1.8 2008/04/14 17:05:32 tgl Exp $ */
/* contrib/cube/uninstall_cube.sql */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/dblink/Makefile,v 1.15 2007/11/10 23:59:50 momjian Exp $
# contrib/dblink/Makefile
MODULE_big = dblink
PG_CPPFLAGS = -I$(libpq_srcdir)

View File

@ -8,7 +8,7 @@
* Darko Prenosil <Darko.Prenosil@finteh.hr>
* Shridhar Daithankar <shridhar_daithankar@persistent.co.in>
*
* $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.99 2010/07/06 19:18:54 momjian Exp $
* contrib/dblink/dblink.c
* Copyright (c) 2001-2010, PostgreSQL Global Development Group
* ALL RIGHTS RESERVED;
*

View File

@ -8,7 +8,7 @@
* Darko Prenosil <Darko.Prenosil@finteh.hr>
* Shridhar Daithankar <shridhar_daithankar@persistent.co.in>
*
* $PostgreSQL: pgsql/contrib/dblink/dblink.h,v 1.24 2010/01/02 16:57:32 momjian Exp $
* contrib/dblink/dblink.h
* Copyright (c) 2001-2010, PostgreSQL Global Development Group
* ALL RIGHTS RESERVED;
*

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/dblink/dblink.sql.in,v 1.19 2009/08/05 16:11:07 joe Exp $ */
/* contrib/dblink/dblink.sql.in */
-- Adjust this setting to control where the objects get created.
SET search_path = public;

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/dblink/uninstall_dblink.sql,v 1.9 2010/06/07 15:14:36 teodor Exp $ */
/* contrib/dblink/uninstall_dblink.sql */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/dict_int/Makefile,v 1.2 2007/12/02 21:15:38 tgl Exp $
# contrib/dict_int/Makefile
MODULE_big = dict_int
OBJS = dict_int.o

View File

@ -6,7 +6,7 @@
* Copyright (c) 2007-2010, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgsql/contrib/dict_int/dict_int.c,v 1.6 2010/01/02 16:57:32 momjian Exp $
* contrib/dict_int/dict_int.c
*
*-------------------------------------------------------------------------
*/

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/dict_int/dict_int.sql.in,v 1.3 2007/11/13 04:24:27 momjian Exp $ */
/* contrib/dict_int/dict_int.sql.in */
-- Adjust this setting to control where the objects get created.
SET search_path = public;

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/dict_int/uninstall_dict_int.sql,v 1.3 2007/11/13 04:24:27 momjian Exp $ */
/* contrib/dict_int/uninstall_dict_int.sql */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/dict_xsyn/Makefile,v 1.3 2007/12/02 21:15:38 tgl Exp $
# contrib/dict_xsyn/Makefile
MODULE_big = dict_xsyn
OBJS = dict_xsyn.o

View File

@ -6,7 +6,7 @@
* Copyright (c) 2007-2010, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgsql/contrib/dict_xsyn/dict_xsyn.c,v 1.9 2010/02/26 02:00:32 momjian Exp $
* contrib/dict_xsyn/dict_xsyn.c
*
*-------------------------------------------------------------------------
*/

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/dict_xsyn/dict_xsyn.sql.in,v 1.3 2007/11/13 04:24:27 momjian Exp $ */
/* contrib/dict_xsyn/dict_xsyn.sql.in */
-- Adjust this setting to control where the objects get created.
SET search_path = public;

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/dict_xsyn/uninstall_dict_xsyn.sql,v 1.3 2007/11/13 04:24:27 momjian Exp $ */
/* contrib/dict_xsyn/uninstall_dict_xsyn.sql */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/earthdistance/Makefile,v 1.20 2010/07/05 23:15:55 tgl Exp $
# contrib/earthdistance/Makefile
MODULES = earthdistance
DATA_built = earthdistance.sql

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.c,v 1.16 2009/06/11 14:48:51 momjian Exp $ */
/* contrib/earthdistance/earthdistance.c */
#include "postgres.h"

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/earthdistance/earthdistance.sql.in,v 1.11 2007/11/13 04:24:27 momjian Exp $ */
/* contrib/earthdistance/earthdistance.sql.in */
-- Adjust this setting to control where the objects get created.
SET search_path = public;

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/earthdistance/uninstall_earthdistance.sql,v 1.3 2007/11/13 04:24:27 momjian Exp $ */
/* contrib/earthdistance/uninstall_earthdistance.sql */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/fuzzystrmatch/Makefile,v 1.10 2007/11/10 23:59:50 momjian Exp $
# contrib/fuzzystrmatch/Makefile
MODULE_big = fuzzystrmatch
OBJS = fuzzystrmatch.o dmetaphone.o

View File

@ -1,7 +1,7 @@
/*
* This is a port of the Double Metaphone algorithm for use in PostgreSQL.
*
* $PostgreSQL: pgsql/contrib/fuzzystrmatch/dmetaphone.c,v 1.15 2010/07/06 19:18:55 momjian Exp $
* contrib/fuzzystrmatch/dmetaphone.c
*
* Double Metaphone computes 2 "sounds like" strings - a primary and an
* alternate. In most cases they are the same, but for foreign names

View File

@ -5,7 +5,7 @@
*
* Joe Conway <mail@joeconway.com>
*
* $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.c,v 1.34 2010/08/02 23:20:23 rhaas Exp $
* contrib/fuzzystrmatch/fuzzystrmatch.c
* Copyright (c) 2001-2010, PostgreSQL Global Development Group
* ALL RIGHTS RESERVED;
*

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/fuzzystrmatch/fuzzystrmatch.sql.in,v 1.10 2008/04/03 21:13:07 tgl Exp $ */
/* contrib/fuzzystrmatch/fuzzystrmatch.sql.in */
-- Adjust this setting to control where the objects get created.
SET search_path = public;

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql,v 1.4 2008/04/03 21:13:07 tgl Exp $ */
/* contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql */
-- Adjust this setting to control where the objects get dropped.
SET search_path = public;

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/hstore/Makefile,v 1.7 2009/09/30 19:50:22 tgl Exp $
# contrib/hstore/Makefile
subdir = contrib/hstore
top_builddir = ../..

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/hstore/crc32.c,v 1.4 2009/06/11 14:48:51 momjian Exp $
* contrib/hstore/crc32.c
*
* Both POSIX and CRC32 checksums */

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/hstore/crc32.h,v 1.3 2009/06/11 14:48:51 momjian Exp $
* contrib/hstore/crc32.h
*/
#ifndef _CRC32_H
#define _CRC32_H

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/hstore/hstore.h,v 1.10 2010/02/26 02:00:32 momjian Exp $
* contrib/hstore/hstore.h
*/
#ifndef __HSTORE_H__
#define __HSTORE_H__

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/contrib/hstore/hstore.sql.in,v 1.15 2010/07/02 20:36:48 rhaas Exp $ */
/* contrib/hstore/hstore.sql.in */
-- Adjust this setting to control where the objects get created.
SET search_path = public;

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/hstore/hstore_compat.c,v 1.3 2010/09/16 02:54:01 tgl Exp $
* contrib/hstore/hstore_compat.c
*
* Notes on old/new hstore format disambiguation.
*

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/hstore/hstore_gin.c,v 1.8 2010/02/26 02:00:32 momjian Exp $
* contrib/hstore/hstore_gin.c
*/
#include "postgres.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/hstore/hstore_gist.c,v 1.13 2010/09/16 02:54:01 tgl Exp $
* contrib/hstore/hstore_gist.c
*/
#include "postgres.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/hstore/hstore_io.c,v 1.13 2010/02/26 02:00:32 momjian Exp $
* contrib/hstore/hstore_io.c
*/
#include "postgres.h"

View File

@ -1,5 +1,5 @@
/*
* $PostgreSQL: pgsql/contrib/hstore/hstore_op.c,v 1.16 2010/02/26 02:00:32 momjian Exp $
* contrib/hstore/hstore_op.c
*/
#include "postgres.h"

Some files were not shown because too many files have changed in this diff Show More