Skip to content

Commit 5b2c983

Browse files
committed
add copyrights
1 parent f6f991f commit 5b2c983

File tree

8 files changed

+72
-0
lines changed

8 files changed

+72
-0
lines changed

hooks.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* ------------------------------------------------------------------------
2+
*
3+
* hooks.c
4+
* definitions of rel_pathlist and join_pathlist hooks
5+
*
6+
* Copyright (c) 2016, Postgres Professional
7+
*
8+
* ------------------------------------------------------------------------
9+
*/
110
#include "postgres.h"
211
#include "optimizer/cost.h"
312
#include "optimizer/restrictinfo.h"

hooks.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* ------------------------------------------------------------------------
2+
*
3+
* hooks.h
4+
* prototypes of rel_pathlist and join_pathlist hooks
5+
*
6+
* Copyright (c) 2016, Postgres Professional
7+
*
8+
* ------------------------------------------------------------------------
9+
*/
110
#ifndef JOIN_HOOK_H
211
#define JOIN_HOOK_H
312

nodes_common.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* ------------------------------------------------------------------------
2+
*
3+
* nodes_common.c
4+
* Common code for custom nodes
5+
*
6+
* Copyright (c) 2016, Postgres Professional
7+
*
8+
* ------------------------------------------------------------------------
9+
*/
110
#include "postgres.h"
211
#include "optimizer/paths.h"
312
#include "nodes_common.h"

nodes_common.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* ------------------------------------------------------------------------
2+
*
3+
* nodes_common.h
4+
* Common function prototypes and structs for custom nodes
5+
*
6+
* Copyright (c) 2016, Postgres Professional
7+
*
8+
* ------------------------------------------------------------------------
9+
*/
110
#ifndef NODES_COMMON_H
211
#define NODES_COMMON_H
312

pickyappend.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* ------------------------------------------------------------------------
2+
*
3+
* pickyappend.c
4+
* PickyAppend node's function definitions and global variables
5+
*
6+
* Copyright (c) 2016, Postgres Professional
7+
*
8+
* ------------------------------------------------------------------------
9+
*/
110
#include "postgres.h"
211
#include "pickyappend.h"
312
#include "pathman.h"

pickyappend.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* ------------------------------------------------------------------------
2+
*
3+
* pickyappend.h
4+
* PickyAppend node's function prototypes and structures
5+
*
6+
* Copyright (c) 2016, Postgres Professional
7+
*
8+
* ------------------------------------------------------------------------
9+
*/
110
#ifndef PICKYAPPEND_H
211
#define PICKYAPPEND_H
312

utils.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* ------------------------------------------------------------------------
2+
*
3+
* utils.c
4+
* definitions of various support functions
5+
*
6+
* Copyright (c) 2016, Postgres Professional
7+
*
8+
* ------------------------------------------------------------------------
9+
*/
110
#include "utils.h"
211
#include "nodes/nodeFuncs.h"
312
#include "parser/parse_param.h"

utils.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/* ------------------------------------------------------------------------
2+
*
3+
* utils.h
4+
* prototypes of various support functions
5+
*
6+
* Copyright (c) 2016, Postgres Professional
7+
*
8+
* ------------------------------------------------------------------------
9+
*/
110
#ifndef UTILS_H
211
#define UTILS_H
312

0 commit comments

Comments
 (0)