mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Update copyright for 2015
Backpatch certain files through 9.0
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
* testlo.c
|
||||
* test using large objects with libpq
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
*
|
||||
|
@ -3,7 +3,7 @@
|
||||
* testlo64.c
|
||||
* test using large objects with libpq using 64-bit APIs
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
*
|
||||
|
@ -2,7 +2,7 @@
|
||||
*
|
||||
* isolation_main --- pg_regress test launcher for isolation tests
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* src/test/isolation/isolation_main.c
|
||||
|
@ -3,7 +3,7 @@
|
||||
* isolationtester.h
|
||||
* include file for isolation tests
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* IDENTIFICATION
|
||||
|
@ -4,7 +4,7 @@
|
||||
* specparse.y
|
||||
* bison grammar for the isolation test file format
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
|
@ -34,4 +34,4 @@ permutation "s1a" "s2a" "s2b" "s1b" "s2c"
|
||||
permutation "s2a" "s1a" "s2b" "s1b" "s2c"
|
||||
# s2 acquires SHARE then UPDATE, then s1 tries to acquire SHARE but
|
||||
# can't so aborts because it can't acquire a regular lock
|
||||
permutation "s2a" "s2b" "s1a" "s1b" "s2c"
|
||||
permutation "s2a" "s2b" "s1a" "s1b" "s2c"
|
||||
|
@ -30,4 +30,4 @@ step "s3a" { SELECT * FROM foo FOR UPDATE NOWAIT; }
|
||||
step "s3b" { COMMIT; }
|
||||
|
||||
# s3 skips to second record due to tuple lock held by s2
|
||||
permutation "s1a" "s2a" "s3a" "s1b" "s2b" "s3b"
|
||||
permutation "s1a" "s2a" "s3a" "s1b" "s2b" "s3b"
|
||||
|
@ -33,4 +33,4 @@ step "s2f" { COMMIT; }
|
||||
# because it has a snapshot that sees the older version, we reach the
|
||||
# waiting code in EvalPlanQualFetch which skips rows when in SKIP
|
||||
# LOCKED mode, so s1 sees the second row
|
||||
permutation "s2a" "s1a" "s2b" "s2c" "s2d" "s2e" "s1b" "s2f"
|
||||
permutation "s2a" "s1a" "s2b" "s2c" "s2d" "s2e" "s1b" "s2f"
|
||||
|
@ -4,7 +4,7 @@
|
||||
* specscanner.l
|
||||
* a lexical scanner for an isolation test specification
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
|
@ -1 +1 @@
|
||||
track_commit_timestamp = on
|
||||
track_commit_timestamp = on
|
||||
|
@ -7,7 +7,7 @@
|
||||
* perspective, but allows regression testing independent of platform-specific
|
||||
* features like SELinux.
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*/
|
||||
#include "postgres.h"
|
||||
|
@ -3,7 +3,7 @@
|
||||
* test_parser.c
|
||||
* Simple example of a text search parser
|
||||
*
|
||||
* Copyright (c) 2007-2014, PostgreSQL Global Development Group
|
||||
* Copyright (c) 2007-2015, PostgreSQL Global Development Group
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* src/test/modules/test_parser/test_parser.c
|
||||
|
@ -3,7 +3,7 @@
|
||||
# GNUmakefile--
|
||||
# Makefile for src/test/regress (the regression tests)
|
||||
#
|
||||
# Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
# Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
# Portions Copyright (c) 1994, Regents of the University of California
|
||||
#
|
||||
# src/test/regress/GNUmakefile
|
||||
|
@ -8,7 +8,7 @@
|
||||
*
|
||||
* This code is released under the terms of the PostgreSQL License.
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* src/test/regress/pg_regress.c
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
* pg_regress.h --- regression test driver
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* src/test/regress/pg_regress.h
|
||||
|
@ -8,7 +8,7 @@
|
||||
*
|
||||
* This code is released under the terms of the PostgreSQL License.
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* src/test/regress/pg_regress_main.c
|
||||
|
@ -6,7 +6,7 @@
|
||||
*
|
||||
* This code is released under the terms of the PostgreSQL License.
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* src/test/regress/regress.c
|
||||
|
@ -2,7 +2,7 @@
|
||||
#
|
||||
# Makefile for src/test/ssl
|
||||
#
|
||||
# Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
# Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
# Portions Copyright (c) 1994, Regents of the University of California
|
||||
#
|
||||
# src/test/ssl/Makefile
|
||||
|
@ -2,7 +2,7 @@
|
||||
#
|
||||
# Makefile for tools/thread
|
||||
#
|
||||
# Copyright (c) 2003-2014, PostgreSQL Global Development Group
|
||||
# Copyright (c) 2003-2015, PostgreSQL Global Development Group
|
||||
#
|
||||
# src/test/thread/Makefile
|
||||
#
|
||||
|
@ -3,7 +3,7 @@
|
||||
* test_thread_funcs.c
|
||||
* libc thread test program
|
||||
*
|
||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* src/test/thread/thread_test.c
|
||||
|
Reference in New Issue
Block a user