1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-19 13:42:17 +03:00
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc

to all files copyright Regents of Berkeley.  Man, that's a lot of files.
This commit is contained in:
Bruce Momjian
2000-01-26 05:58:53 +00:00
parent b866d2e2d7
commit 5c25d60244
596 changed files with 1776 additions and 1179 deletions

View File

@@ -3,11 +3,12 @@
* keywords.c
* lexical token lookup for reserved words in postgres SQL
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/keywords.c,v 1.20 1999/12/08 09:52:29 meskes Exp $
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/keywords.c,v 1.21 2000/01/26 05:58:41 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -7,11 +7,12 @@
* This is a modified version of src/backend/parser/scan.l
*
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.48 2000/01/20 05:23:26 tgl Exp $
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.49 2000/01/26 05:58:41 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -5,9 +5,10 @@
* libpgtcl is a tcl package for front-ends to interface with PostgreSQL.
* It's a Tcl wrapper for libpq.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: libpgtcl.h,v 1.8 1999/05/25 22:43:42 momjian Exp $
* $Id: libpgtcl.h,v 1.9 2000/01/26 05:58:43 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -5,11 +5,12 @@
* libpgtcl is a tcl package for front-ends to interface with PostgreSQL.
* It's a Tcl wrapper for libpq.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.16 1999/07/17 20:18:41 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.17 2000/01/26 05:58:43 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -3,11 +3,12 @@
* pgtclCmds.c
* C functions which implement pg_* tcl commands
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.45 1999/07/17 20:18:42 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclCmds.c,v 1.46 2000/01/26 05:58:43 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -3,9 +3,10 @@
* pgtclCmds.h
* declarations for the C functions which implement pg_* tcl commands
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: pgtclCmds.h,v 1.15 1999/05/25 22:43:45 momjian Exp $
* $Id: pgtclCmds.h,v 1.16 2000/01/26 05:58:43 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -9,10 +9,11 @@
*
* ASSUMPTION: sizeof(long) >= sizeof(void*)
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclId.c,v 1.21 1999/07/17 20:18:42 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtclId.c,v 1.22 2000/01/26 05:58:43 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -7,9 +7,10 @@
* everything in Tcl is a string, but in C, pointers to data structures
* are needed.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: pgtclId.h,v 1.13 1999/05/30 15:22:34 tgl Exp $
* $Id: pgtclId.h,v 1.14 2000/01/26 05:58:43 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -11,7 +11,8 @@
* NOTES
* Currently under construction.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
*-------------------------------------------------------------------------
@@ -30,7 +31,7 @@ extern "C" {
#include "libpq-fe.h"
}
static char rcsid[] = "$Id: libpq++.h,v 1.4 1999/12/05 19:29:37 momjian Exp $";
static char rcsid[] = "$Id: libpq++.h,v 1.5 2000/01/26 05:58:47 momjian Exp $";
// ****************************************************************

View File

@@ -10,9 +10,10 @@
* NOTES
* Currently under construction.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: pgconnection.h,v 1.2 1999/05/23 01:04:00 momjian Exp $
* $Id: pgconnection.h,v 1.3 2000/01/26 05:58:47 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -10,10 +10,11 @@
* NOTES
* Currently under construction.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $Id: pgcursordb.h,v 1.3 1999/06/01 02:37:33 momjian Exp $
* $Id: pgcursordb.h,v 1.4 2000/01/26 05:58:48 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -10,10 +10,11 @@
* NOTES
* Currently under construction.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $Id: pgdatabase.h,v 1.5 1999/10/06 03:00:16 momjian Exp $
* $Id: pgdatabase.h,v 1.6 2000/01/26 05:58:48 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -7,10 +7,11 @@
* declaration of the PGlobj class.
* PGlobj encapsulates a large object interface to Postgres backend
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $Id: pglobject.h,v 1.3 1999/10/22 19:05:02 momjian Exp $
* $Id: pglobject.h,v 1.4 2000/01/26 05:58:48 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -10,10 +10,11 @@
* NOTES
* Currently under construction.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $Id: pgtransdb.h,v 1.3 1999/06/01 02:37:33 momjian Exp $
* $Id: pgtransdb.h,v 1.4 2000/01/26 05:58:48 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -3,13 +3,14 @@
* fe-auth.c
* The front-end (client) authorization routines
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* NOTE: the error message strings returned by this module must not
* exceed INITIAL_EXPBUFFER_SIZE (currently 256 bytes).
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.35 2000/01/18 19:05:31 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.36 2000/01/26 05:58:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -4,9 +4,10 @@
*
* Definitions for network authentication routines
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: fe-auth.h,v 1.10 1998/09/01 04:40:03 momjian Exp $
* $Id: fe-auth.h,v 1.11 2000/01/26 05:58:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -3,11 +3,12 @@
* fe-connect.c
* functions related to setting up a connection to the backend
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.115 2000/01/24 02:12:58 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.116 2000/01/26 05:58:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -3,11 +3,12 @@
* fe-exec.c
* functions related to sending a query down to the backend
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.88 2000/01/24 02:12:58 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.89 2000/01/26 05:58:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -3,11 +3,12 @@
* fe-lobj.c
* Front-end large object interface
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-lobj.c,v 1.26 1999/11/11 00:10:14 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-lobj.c,v 1.27 2000/01/26 05:58:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -20,11 +20,12 @@
* for transmitted ints, whereas the backend modules (as of this writing)
* still handle either network or little-endian byte order.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-misc.c,v 1.36 2000/01/20 04:08:46 tgl Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-misc.c,v 1.37 2000/01/26 05:58:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -3,13 +3,14 @@
* fe-print.c
* functions for pretty-printing query results
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* These functions were formerly part of fe-exec.c, but they
* didn't really belong there.
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.31 2000/01/19 01:33:16 ishii Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.32 2000/01/26 05:58:46 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -4,9 +4,10 @@
* This file contains definitions for structures and
* externs for functions used by frontend postgres applications.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: libpq-fe.h,v 1.56 2000/01/18 06:09:24 momjian Exp $
* $Id: libpq-fe.h,v 1.57 2000/01/26 05:58:46 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -9,9 +9,10 @@
* more likely to break across PostgreSQL releases than code that uses
* only the official API.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: libpq-int.h,v 1.17 2000/01/18 06:09:24 momjian Exp $
* $Id: libpq-int.h,v 1.18 2000/01/26 05:58:46 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -14,9 +14,10 @@
* a usable vsnprintf(), then a copy of our own implementation of it will
* be linked into libpq.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Header: /cvsroot/pgsql/src/interfaces/libpq/pqexpbuffer.c,v 1.3 2000/01/18 19:05:31 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/pqexpbuffer.c,v 1.4 2000/01/26 05:58:46 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -15,9 +15,10 @@
* a usable vsnprintf(), then a copy of our own implementation of it will
* be linked into libpq.
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: pqexpbuffer.h,v 1.2 2000/01/17 02:59:46 tgl Exp $
* $Id: pqexpbuffer.h,v 1.3 2000/01/26 05:58:46 momjian Exp $
*
*-------------------------------------------------------------------------
*/

View File

@@ -4,11 +4,12 @@
* reliable BSD-style signal(2) routine stolen from RWW who stole it
* from Stevens...
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/pqsignal.c,v 1.10 1999/02/13 23:22:43 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/pqsignal.c,v 1.11 2000/01/26 05:58:46 momjian Exp $
*
* NOTES
* This shouldn't be in libpq, but the monitor and some other

View File

@@ -4,9 +4,10 @@
* prototypes for the reliable BSD-style signal(2) routine.
*
*
* Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: pqsignal.h,v 1.7 1999/02/13 23:22:43 momjian Exp $
* $Id: pqsignal.h,v 1.8 2000/01/26 05:58:46 momjian Exp $
*
* NOTES
* This shouldn't be in libpq, but the monitor and some other