Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5931737

Browse files
committed
Remove Jan Wieck's name from copyrights, and put in standard
boilerplate, with approval of author.
1 parent 66fc528 commit 5931737

File tree

7 files changed

+57
-210
lines changed

7 files changed

+57
-210
lines changed

src/pl/plpgsql/src/gram.y

Lines changed: 8 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,18 @@
11
%{
2-
/**********************************************************************
2+
/*-------------------------------------------------------------------------
3+
*
34
* gram.y - Parser for the PL/pgSQL
45
* procedural language
56
*
6-
* IDENTIFICATION
7-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.86 2006/03/07 01:03:12 tgl Exp $
8-
*
9-
* This software is copyrighted by Jan Wieck - Hamburg.
7+
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
8+
* Portions Copyright (c) 1994, Regents of the University of California
109
*
11-
* The author hereby grants permission to use, copy, modify,
12-
* distribute, and license this software and its documentation
13-
* for any purpose, provided that existing copyright notices are
14-
* retained in all copies and that this notice is included
15-
* verbatim in any distributions. No written agreement, license,
16-
* or royalty fee is required for any of the authorized uses.
17-
* Modifications to this software may be copyrighted by their
18-
* author and need not follow the licensing terms described
19-
* here, provided that the new terms are clearly indicated on
20-
* the first page of each file where they apply.
2110
*
22-
* IN NO EVENT SHALL THE AUTHOR OR DISTRIBUTORS BE LIABLE TO ANY
23-
* PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
24-
* CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS
25-
* SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN
26-
* IF THE AUTHOR HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
27-
* DAMAGE.
28-
*
29-
* THE AUTHOR AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY
30-
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
31-
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
32-
* PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON
33-
* AN "AS IS" BASIS, AND THE AUTHOR AND DISTRIBUTORS HAVE NO
34-
* OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
35-
* ENHANCEMENTS, OR MODIFICATIONS.
11+
* IDENTIFICATION
12+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/gram.y,v 1.87 2006/03/09 21:29:36 momjian Exp $
3613
*
37-
**********************************************************************/
14+
*-------------------------------------------------------------------------
15+
*/
3816

3917
#include "plpgsql.h"
4018

src/pl/plpgsql/src/pl_comp.c

Lines changed: 8 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,17 @@
1-
/**********************************************************************
1+
/*-------------------------------------------------------------------------
2+
*
23
* pl_comp.c - Compiler part of the PL/pgSQL
34
* procedural language
45
*
5-
* IDENTIFICATION
6-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.99 2006/03/07 01:03:12 tgl Exp $
7-
*
8-
* This software is copyrighted by Jan Wieck - Hamburg.
6+
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
7+
* Portions Copyright (c) 1994, Regents of the University of California
98
*
10-
* The author hereby grants permission to use, copy, modify,
11-
* distribute, and license this software and its documentation
12-
* for any purpose, provided that existing copyright notices are
13-
* retained in all copies and that this notice is included
14-
* verbatim in any distributions. No written agreement, license,
15-
* or royalty fee is required for any of the authorized uses.
16-
* Modifications to this software may be copyrighted by their
17-
* author and need not follow the licensing terms described
18-
* here, provided that the new terms are clearly indicated on
19-
* the first page of each file where they apply.
209
*
21-
* IN NO EVENT SHALL THE AUTHOR OR DISTRIBUTORS BE LIABLE TO ANY
22-
* PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
23-
* CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS
24-
* SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN
25-
* IF THE AUTHOR HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
26-
* DAMAGE.
27-
*
28-
* THE AUTHOR AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY
29-
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
30-
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
31-
* PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON
32-
* AN "AS IS" BASIS, AND THE AUTHOR AND DISTRIBUTORS HAVE NO
33-
* OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
34-
* ENHANCEMENTS, OR MODIFICATIONS.
10+
* IDENTIFICATION
11+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_comp.c,v 1.100 2006/03/09 21:29:36 momjian Exp $
3512
*
36-
**********************************************************************/
13+
*-------------------------------------------------------------------------
14+
*/
3715

3816
#include "plpgsql.h"
3917

src/pl/plpgsql/src/pl_exec.c

Lines changed: 8 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,17 @@
1-
/**********************************************************************
1+
/*-------------------------------------------------------------------------
2+
*
23
* pl_exec.c - Executor for the PL/pgSQL
34
* procedural language
45
*
5-
* IDENTIFICATION
6-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.161 2006/03/02 05:34:12 tgl Exp $
7-
*
8-
* This software is copyrighted by Jan Wieck - Hamburg.
6+
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
7+
* Portions Copyright (c) 1994, Regents of the University of California
98
*
10-
* The author hereby grants permission to use, copy, modify,
11-
* distribute, and license this software and its documentation
12-
* for any purpose, provided that existing copyright notices are
13-
* retained in all copies and that this notice is included
14-
* verbatim in any distributions. No written agreement, license,
15-
* or royalty fee is required for any of the authorized uses.
16-
* Modifications to this software may be copyrighted by their
17-
* author and need not follow the licensing terms described
18-
* here, provided that the new terms are clearly indicated on
19-
* the first page of each file where they apply.
209
*
21-
* IN NO EVENT SHALL THE AUTHOR OR DISTRIBUTORS BE LIABLE TO ANY
22-
* PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
23-
* CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS
24-
* SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN
25-
* IF THE AUTHOR HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
26-
* DAMAGE.
27-
*
28-
* THE AUTHOR AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY
29-
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
30-
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
31-
* PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON
32-
* AN "AS IS" BASIS, AND THE AUTHOR AND DISTRIBUTORS HAVE NO
33-
* OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
34-
* ENHANCEMENTS, OR MODIFICATIONS.
10+
* IDENTIFICATION
11+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.162 2006/03/09 21:29:36 momjian Exp $
3512
*
36-
**********************************************************************/
13+
*-------------------------------------------------------------------------
14+
*/
3715

3816
#include "plpgsql.h"
3917
#include "pl.tab.h"

src/pl/plpgsql/src/pl_funcs.c

Lines changed: 8 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,17 @@
1-
/**********************************************************************
1+
/*-------------------------------------------------------------------------
2+
*
23
* pl_funcs.c - Misc functions for the PL/pgSQL
34
* procedural language
45
*
5-
* IDENTIFICATION
6-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_funcs.c,v 1.47 2005/11/22 18:17:33 momjian Exp $
7-
*
8-
* This software is copyrighted by Jan Wieck - Hamburg.
6+
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
7+
* Portions Copyright (c) 1994, Regents of the University of California
98
*
10-
* The author hereby grants permission to use, copy, modify,
11-
* distribute, and license this software and its documentation
12-
* for any purpose, provided that existing copyright notices are
13-
* retained in all copies and that this notice is included
14-
* verbatim in any distributions. No written agreement, license,
15-
* or royalty fee is required for any of the authorized uses.
16-
* Modifications to this software may be copyrighted by their
17-
* author and need not follow the licensing terms described
18-
* here, provided that the new terms are clearly indicated on
19-
* the first page of each file where they apply.
209
*
21-
* IN NO EVENT SHALL THE AUTHOR OR DISTRIBUTORS BE LIABLE TO ANY
22-
* PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
23-
* CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS
24-
* SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN
25-
* IF THE AUTHOR HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
26-
* DAMAGE.
27-
*
28-
* THE AUTHOR AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY
29-
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
30-
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
31-
* PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON
32-
* AN "AS IS" BASIS, AND THE AUTHOR AND DISTRIBUTORS HAVE NO
33-
* OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
34-
* ENHANCEMENTS, OR MODIFICATIONS.
10+
* IDENTIFICATION
11+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_funcs.c,v 1.48 2006/03/09 21:29:37 momjian Exp $
3512
*
36-
**********************************************************************/
13+
*-------------------------------------------------------------------------
14+
*/
3715

3816
#include "plpgsql.h"
3917
#include "pl.tab.h"

src/pl/plpgsql/src/pl_handler.c

Lines changed: 8 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,17 @@
1-
/**********************************************************************
1+
/*-------------------------------------------------------------------------
2+
*
23
* pl_handler.c - Handler for the PL/pgSQL
34
* procedural language
45
*
5-
* IDENTIFICATION
6-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_handler.c,v 1.27 2005/12/28 18:11:25 tgl Exp $
7-
*
8-
* This software is copyrighted by Jan Wieck - Hamburg.
6+
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
7+
* Portions Copyright (c) 1994, Regents of the University of California
98
*
10-
* The author hereby grants permission to use, copy, modify,
11-
* distribute, and license this software and its documentation
12-
* for any purpose, provided that existing copyright notices are
13-
* retained in all copies and that this notice is included
14-
* verbatim in any distributions. No written agreement, license,
15-
* or royalty fee is required for any of the authorized uses.
16-
* Modifications to this software may be copyrighted by their
17-
* author and need not follow the licensing terms described
18-
* here, provided that the new terms are clearly indicated on
19-
* the first page of each file where they apply.
209
*
21-
* IN NO EVENT SHALL THE AUTHOR OR DISTRIBUTORS BE LIABLE TO ANY
22-
* PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
23-
* CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS
24-
* SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN
25-
* IF THE AUTHOR HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
26-
* DAMAGE.
27-
*
28-
* THE AUTHOR AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY
29-
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
30-
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
31-
* PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON
32-
* AN "AS IS" BASIS, AND THE AUTHOR AND DISTRIBUTORS HAVE NO
33-
* OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
34-
* ENHANCEMENTS, OR MODIFICATIONS.
10+
* IDENTIFICATION
11+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_handler.c,v 1.28 2006/03/09 21:29:38 momjian Exp $
3512
*
36-
**********************************************************************/
13+
*-------------------------------------------------------------------------
14+
*/
3715

3816
#include "plpgsql.h"
3917
#include "pl.tab.h"

src/pl/plpgsql/src/plpgsql.h

Lines changed: 9 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,18 @@
1-
/**********************************************************************
1+
/*-------------------------------------------------------------------------
2+
*
23
* plpgsql.h - Definitions for the PL/pgSQL
34
* procedural language
45
*
5-
* IDENTIFICATION
6-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/plpgsql.h,v 1.68 2006/03/07 01:03:12 tgl Exp $
7-
*
8-
* This software is copyrighted by Jan Wieck - Hamburg.
9-
*
10-
* The author hereby grants permission to use, copy, modify,
11-
* distribute, and license this software and its documentation
12-
* for any purpose, provided that existing copyright notices are
13-
* retained in all copies and that this notice is included
14-
* verbatim in any distributions. No written agreement, license,
15-
* or royalty fee is required for any of the authorized uses.
16-
* Modifications to this software may be copyrighted by their
17-
* author and need not follow the licensing terms described
18-
* here, provided that the new terms are clearly indicated on
19-
* the first page of each file where they apply.
6+
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
7+
* Portions Copyright (c) 1994, Regents of the University of California
208
*
21-
* IN NO EVENT SHALL THE AUTHOR OR DISTRIBUTORS BE LIABLE TO ANY
22-
* PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
23-
* CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS
24-
* SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN
25-
* IF THE AUTHOR HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
26-
* DAMAGE.
279
*
28-
* THE AUTHOR AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY
29-
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
30-
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
31-
* PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON
32-
* AN "AS IS" BASIS, AND THE AUTHOR AND DISTRIBUTORS HAVE NO
33-
* OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
34-
* ENHANCEMENTS, OR MODIFICATIONS.
10+
* IDENTIFICATION
11+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/plpgsql.h,v 1.69 2006/03/09 21:29:38 momjian Exp $
3512
*
36-
**********************************************************************/
13+
*-------------------------------------------------------------------------
14+
*/
15+
3716
#ifndef PLPGSQL_H
3817
#define PLPGSQL_H
3918

src/pl/plpgsql/src/scan.l

Lines changed: 8 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,18 @@
11
%{
2-
/**********************************************************************
2+
/*-------------------------------------------------------------------------
3+
*
34
* scan.l - Scanner for the PL/pgSQL
45
* procedural language
56
*
6-
* IDENTIFICATION
7-
* $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.44 2006/03/07 01:03:12 tgl Exp $
8-
*
9-
* This software is copyrighted by Jan Wieck - Hamburg.
7+
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
8+
* Portions Copyright (c) 1994, Regents of the University of California
109
*
11-
* The author hereby grants permission to use, copy, modify,
12-
* distribute, and license this software and its documentation
13-
* for any purpose, provided that existing copyright notices are
14-
* retained in all copies and that this notice is included
15-
* verbatim in any distributions. No written agreement, license,
16-
* or royalty fee is required for any of the authorized uses.
17-
* Modifications to this software may be copyrighted by their
18-
* author and need not follow the licensing terms described
19-
* here, provided that the new terms are clearly indicated on
20-
* the first page of each file where they apply.
2110
*
22-
* IN NO EVENT SHALL THE AUTHOR OR DISTRIBUTORS BE LIABLE TO ANY
23-
* PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR
24-
* CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS
25-
* SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, EVEN
26-
* IF THE AUTHOR HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
27-
* DAMAGE.
28-
*
29-
* THE AUTHOR AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY
30-
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
31-
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
32-
* PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON
33-
* AN "AS IS" BASIS, AND THE AUTHOR AND DISTRIBUTORS HAVE NO
34-
* OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
35-
* ENHANCEMENTS, OR MODIFICATIONS.
11+
* IDENTIFICATION
12+
* $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.45 2006/03/09 21:29:38 momjian Exp $
3613
*
37-
**********************************************************************/
14+
*-------------------------------------------------------------------------
15+
*/
3816

3917
#include "plpgsql.h"
4018

0 commit comments

Comments
 (0)