mirror of https://github.com/citusdata/citus.git
Update copyright dates
Fixed configure variable and updated all end dates to 2016.pull/386/head
parent
9521fcfb22
commit
423e6c8ea0
|
@ -9,7 +9,7 @@
|
||||||
# This configure script is free software; the Free Software Foundation
|
# This configure script is free software; the Free Software Foundation
|
||||||
# gives unlimited permission to copy, distribute and modify it.
|
# gives unlimited permission to copy, distribute and modify it.
|
||||||
#
|
#
|
||||||
# Copyright (c) Copyright (c) 2012-2015, Citus Data, Inc.
|
# Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
## -------------------- ##
|
## -------------------- ##
|
||||||
## M4sh Initialization. ##
|
## M4sh Initialization. ##
|
||||||
## -------------------- ##
|
## -------------------- ##
|
||||||
|
@ -1340,7 +1340,7 @@ Copyright (C) 2012 Free Software Foundation, Inc.
|
||||||
This configure script is free software; the Free Software Foundation
|
This configure script is free software; the Free Software Foundation
|
||||||
gives unlimited permission to copy, distribute and modify it.
|
gives unlimited permission to copy, distribute and modify it.
|
||||||
|
|
||||||
Copyright (c) Copyright (c) 2012-2015, Citus Data, Inc.
|
Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
_ACEOF
|
_ACEOF
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# into the SCM.
|
# into the SCM.
|
||||||
|
|
||||||
AC_INIT([Citus], [5.0], [], [citus], [])
|
AC_INIT([Citus], [5.0], [], [citus], [])
|
||||||
AC_COPYRIGHT([Copyright (c) Copyright (c) 2012-2015, Citus Data, Inc.])
|
AC_COPYRIGHT([Copyright (c) 2012-2016, Citus Data, Inc.])
|
||||||
|
|
||||||
AC_PROG_SED
|
AC_PROG_SED
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* create_distributed_relation.c
|
* create_distributed_relation.c
|
||||||
* Routines relation to the creation of distributed relations.
|
* Routines relation to the creation of distributed relations.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* transmit.c
|
* transmit.c
|
||||||
* Routines for transmitting regular files between two nodes.
|
* Routines for transmitting regular files between two nodes.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* This file contains the libpq-specific parts of executing queries on remote
|
* This file contains the libpq-specific parts of executing queries on remote
|
||||||
* nodes.
|
* nodes.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* Entrypoint into distributed query execution.
|
* Entrypoint into distributed query execution.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
* available. They also can't handle execution primitives that need to write
|
* available. They also can't handle execution primitives that need to write
|
||||||
* their results to intermediate files.
|
* their results to intermediate files.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2013, Citus Data, Inc.
|
* Copyright (c) 2013-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* the results that are fetched from a single worker is sent to the output console
|
* the results that are fetched from a single worker is sent to the output console
|
||||||
* directly. Lastly, router executor can only execute a single task.
|
* directly. Lastly, router executor can only execute a single task.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "postgres.h"
|
#include "postgres.h"
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
* routines are implement backend-side logic; and they trigger executions
|
* routines are implement backend-side logic; and they trigger executions
|
||||||
* on the client-side via function hooks that they load.
|
* on the client-side via function hooks that they load.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
* for each task, and (b) distributed execution plans can include map/reduce
|
* for each task, and (b) distributed execution plans can include map/reduce
|
||||||
* execution primitives, which involve writing intermediate results to files.
|
* execution primitives, which involve writing intermediate results to files.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2013, Citus Data, Inc.
|
* Copyright (c) 2013-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* multi_utility.c
|
* multi_utility.c
|
||||||
* Citus utility hook and related functionality.
|
* Citus utility hook and related functionality.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* This file contains functions to distribute a table by creating shards for it
|
* This file contains functions to distribute a table by creating shards for it
|
||||||
* across a set of worker nodes.
|
* across a set of worker nodes.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
* in a delete command and deletes a shard if and only if all rows in the shard
|
* in a delete command and deletes a shard if and only if all rows in the shard
|
||||||
* satisfy the conditions in the delete command.
|
* satisfy the conditions in the delete command.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* master_metadata_utility.c
|
* master_metadata_utility.c
|
||||||
* Routines for reading and modifying master node's metadata.
|
* Routines for reading and modifying master node's metadata.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Routines for requesting information from the master node for creating or
|
* Routines for requesting information from the master node for creating or
|
||||||
* updating shards.
|
* updating shards.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* This file contains functions to repair unhealthy shard placements using data
|
* This file contains functions to repair unhealthy shard placements using data
|
||||||
* from healthy ones.
|
* from healthy ones.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
* command, but also differ from them in that users stage data from tables and
|
* command, but also differ from them in that users stage data from tables and
|
||||||
* not files, and that they can also append to existing shards.
|
* not files, and that they can also append to existing shards.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2013, Citus Data, Inc.
|
* Copyright (c) 2013-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Routines for reading worker nodes from membership file, and allocating
|
* Routines for reading worker nodes from membership file, and allocating
|
||||||
* candidate nodes for shard placement.
|
* candidate nodes for shard placement.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* multi_explain.c
|
* multi_explain.c
|
||||||
* Citus explain support.
|
* Citus explain support.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* Routines for constructing the join order list using a rule-based approach.
|
* Routines for constructing the join order list using a rule-based approach.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Routines for optimizing logical plan trees based on multi-relational
|
* Routines for optimizing logical plan trees based on multi-relational
|
||||||
* algebra.
|
* algebra.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* Routines for constructing a logical plan tree from the given Query tree
|
* Routines for constructing a logical plan tree from the given Query tree
|
||||||
* structure. This new logical plan is based on multi-relational algebra rules.
|
* structure. This new logical plan is based on multi-relational algebra rules.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Routines for building create table and select into table statements on the
|
* Routines for building create table and select into table statements on the
|
||||||
* master node.
|
* master node.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Routines for creating physical plans from given multi-relational algebra
|
* Routines for creating physical plans from given multi-relational algebra
|
||||||
* trees.
|
* trees.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* multi_planner.c
|
* multi_planner.c
|
||||||
* General Citus planner code.
|
* General Citus planner code.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* Routines for handling DDL statements that relate to relay files. These
|
* Routines for handling DDL statements that relate to relay files. These
|
||||||
* routines extend relation, index and constraint names in utility commands.
|
* routines extend relation, index and constraint names in utility commands.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* shared_library_init.c
|
* shared_library_init.c
|
||||||
* Initialize Citus extension
|
* Initialize Citus extension
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* This file contains functions to exercise Citus's connection hash
|
* This file contains functions to exercise Citus's connection hash
|
||||||
* functionality for purposes of unit testing.
|
* functionality for purposes of unit testing.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* certain platforms (those which install a single libpq version but can
|
* certain platforms (those which install a single libpq version but can
|
||||||
* have multiple PostgreSQL server versions) will faile.
|
* have multiple PostgreSQL server versions) will faile.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* This file contains functions to exercise shard creation functionality
|
* This file contains functions to exercise shard creation functionality
|
||||||
* within Citus.
|
* within Citus.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* This file contains functions to exercise distributed table metadata
|
* This file contains functions to exercise distributed table metadata
|
||||||
* functionality within Citus.
|
* functionality within Citus.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* This file contains a barebones FDW implementation, suitable for use in
|
* This file contains a barebones FDW implementation, suitable for use in
|
||||||
* test code. Inspired by Andrew Dunstan's blackhole_fdw.
|
* test code. Inspired by Andrew Dunstan's blackhole_fdw.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* This file contains functions to exercise DDL generation functionality
|
* This file contains functions to exercise DDL generation functionality
|
||||||
* within Citus.
|
* within Citus.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* This file contains functions to exercise shard creation functionality
|
* This file contains functions to exercise shard creation functionality
|
||||||
* within Citus.
|
* within Citus.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* This file contains helper functions used in many Citus tests.
|
* This file contains helper functions used in many Citus tests.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* citus_nodefuncs.c
|
* citus_nodefuncs.c
|
||||||
* Helper functions for dealing with nodes
|
* Helper functions for dealing with nodes
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
* Portions Copyright (c) 2012-2015, Citus Data, Inc.
|
* Portions Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* This is a wrapper around postgres' nodeToString() that additionally
|
* This is a wrapper around postgres' nodeToString() that additionally
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
*
|
*
|
||||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
* Portions Copyright (c) 2012-2015, Citus Data, Inc.
|
* Portions Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* Unfortunately we have to copy this file as the state variable for
|
* Unfortunately we have to copy this file as the state variable for
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
* Portions Copyright (c) 2012-2015, Citus Data, Inc.
|
* Portions Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
* Portions Copyright (c) 2012-2015, Citus Data, Inc.
|
* Portions Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* citus_ruleutils.c
|
* citus_ruleutils.c
|
||||||
* Version independent ruleutils wrapper
|
* Version independent ruleutils wrapper
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* This file contains functions to implement a connection hash.
|
* This file contains functions to implement a connection hash.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* This file contains functions to perform useful operations on lists.
|
* This file contains functions to perform useful operations on lists.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* metadata_cache.c
|
* metadata_cache.c
|
||||||
* Distributed table metadata cache
|
* Distributed table metadata cache
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
* probably rather use a hash table using the pointer value of the resource
|
* probably rather use a hash table using the pointer value of the resource
|
||||||
* owner as key.
|
* owner as key.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
* advisory locks, but luckily advisory locks only two values for 'field4' in
|
* advisory locks, but luckily advisory locks only two values for 'field4' in
|
||||||
* the locktag.
|
* the locktag.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
* For details on how the task tracker manages resources during process start-up
|
* For details on how the task tracker manages resources during process start-up
|
||||||
* and shutdown, please see the writeboard on our Basecamp project website.
|
* and shutdown, please see the writeboard on our Basecamp project website.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
* routines allow for the master node to assign tasks to the task tracker, check
|
* routines allow for the master node to assign tasks to the task tracker, check
|
||||||
* these tasks' statuses, and remove these tasks when they are no longer needed.
|
* these tasks' statuses, and remove these tasks when they are no longer needed.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* Routines for fetching remote resources from other nodes to this worker node,
|
* Routines for fetching remote resources from other nodes to this worker node,
|
||||||
* and materializing these resources on this node if necessary.
|
* and materializing these resources on this node if necessary.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* Routines for accessing file related information on this worker node.
|
* Routines for accessing file related information on this worker node.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
* files is one of the threee distributed execution primitives that we apply on
|
* files is one of the threee distributed execution primitives that we apply on
|
||||||
* worker nodes.
|
* worker nodes.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
* nodes; and when partitioning data, we follow Hadoop's naming conventions as
|
* nodes; and when partitioning data, we follow Hadoop's naming conventions as
|
||||||
* much as possible.
|
* much as possible.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* copy_options.c
|
* copy_options.c
|
||||||
* Routines for parsing copy and stage meta commands.
|
* Routines for parsing copy and stage meta commands.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
* outputting table data to a file. Further, the stage command reuses copy's
|
* outputting table data to a file. Further, the stage command reuses copy's
|
||||||
* declarations to maintain compatibility with the copy command.
|
* declarations to maintain compatibility with the copy command.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* communicate with the master and worker nodes; and create new shards and
|
* communicate with the master and worker nodes; and create new shards and
|
||||||
* upload data into them.
|
* upload data into them.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Declarations for the csql meta-command \stage. These declarations define a
|
* Declarations for the csql meta-command \stage. These declarations define a
|
||||||
* protocol for the client to communicate to the master and worker nodes.
|
* protocol for the client to communicate to the master and worker nodes.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* citus_nodefuncs.h
|
* citus_nodefuncs.h
|
||||||
* Node (de-)serialization support for Citus.
|
* Node (de-)serialization support for Citus.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* citus_nodes.h
|
* citus_nodes.h
|
||||||
* Additional node types, and related infrastructure, for Citus.
|
* Additional node types, and related infrastructure, for Citus.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Citus ruleutils wrapper functions and exported PostgreSQL ruleutils
|
* Citus ruleutils wrapper functions and exported PostgreSQL ruleutils
|
||||||
* functions.
|
* functions.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* Declarations for public functions and types related to connection hash
|
* Declarations for public functions and types related to connection hash
|
||||||
* functionality.
|
* functionality.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* Declarations for public utility functions related to lists.
|
* Declarations for public utility functions related to lists.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Type and function declarations used for reading and modifying master
|
* Type and function declarations used for reading and modifying master
|
||||||
* node's metadata.
|
* node's metadata.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Header for shared declarations for access to master node data. These data
|
* Header for shared declarations for access to master node data. These data
|
||||||
* are used to create new shards or update existing ones.
|
* are used to create new shards or update existing ones.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* metadata_cache.h
|
* metadata_cache.h
|
||||||
* Executor support for Citus.
|
* Executor support for Citus.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Type and function pointer declarations for executing client-side (libpq)
|
* Type and function pointer declarations for executing client-side (libpq)
|
||||||
* logic.
|
* logic.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* multi_executor.h
|
* multi_executor.h
|
||||||
* Executor support for Citus.
|
* Executor support for Citus.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* multi_explain.h
|
* multi_explain.h
|
||||||
* Explain support for Citus.
|
* Explain support for Citus.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* Type and function declarations for determining a left-only join order for a
|
* Type and function declarations for determining a left-only join order for a
|
||||||
* distributed query plan.
|
* distributed query plan.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Type and function declarations for optimizing multi-relation based logical
|
* Type and function declarations for optimizing multi-relation based logical
|
||||||
* plans.
|
* plans.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Type declarations for multi-relational algebra operators, and function
|
* Type declarations for multi-relational algebra operators, and function
|
||||||
* declarations for building logical plans over distributed relations.
|
* declarations for building logical plans over distributed relations.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Function declarations for building planned statements; these statements
|
* Function declarations for building planned statements; these statements
|
||||||
* are then executed on the master node.
|
* are then executed on the master node.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Type and function declarations used in creating the distributed execution
|
* Type and function declarations used in creating the distributed execution
|
||||||
* plan.
|
* plan.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* multi_planner.h
|
* multi_planner.h
|
||||||
* General Citus planner code.
|
* General Citus planner code.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* multi_resowner.h
|
* multi_resowner.h
|
||||||
* Citus resource owner integration.
|
* Citus resource owner integration.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
#ifndef MULTI_RESOWNER_H
|
#ifndef MULTI_RESOWNER_H
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Type and function declarations for executing remote jobs from a backend;
|
* Type and function declarations for executing remote jobs from a backend;
|
||||||
* the ensemble of these jobs form the distributed execution plan.
|
* the ensemble of these jobs form the distributed execution plan.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* multi_utility.h
|
* multi_utility.h
|
||||||
* Citus utility hook and related functionality.
|
* Citus utility hook and related functionality.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
* partitioning for (smaller physical tables that we partition data to are
|
* partitioning for (smaller physical tables that we partition data to are
|
||||||
* handled in another system catalog).
|
* handled in another system catalog).
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* concerning the creation, deletion, merging, and split of remote partitions
|
* concerning the creation, deletion, merging, and split of remote partitions
|
||||||
* reference this table.
|
* reference this table.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
* the master reconciles these shard reports, and determines outdated, under-
|
* the master reconciles these shard reports, and determines outdated, under-
|
||||||
* and over-replicated shards.
|
* and over-replicated shards.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* Header and type declarations that extend relation, index and constraint names
|
* Header and type declarations that extend relation, index and constraint names
|
||||||
* with the appropriate shard identifiers.
|
* with the appropriate shard identifiers.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id:$
|
* $Id:$
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* resource_lock.h
|
* resource_lock.h
|
||||||
* Locking Infrastructure for Citus.
|
* Locking Infrastructure for Citus.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* Header and type declarations for coordinating execution of tasks and data
|
* Header and type declarations for coordinating execution of tasks and data
|
||||||
* source transfers on worker nodes.
|
* source transfers on worker nodes.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* Header and type declarations for assigning tasks to and removing tasks from
|
* Header and type declarations for assigning tasks to and removing tasks from
|
||||||
* the task tracker running on this node.
|
* the task tracker running on this node.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
* Declarations for public functions and types related to unit testing
|
* Declarations for public functions and types related to unit testing
|
||||||
* functionality.
|
* functionality.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014-2015, Citus Data, Inc.
|
* Copyright (c) 2014-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* transmit.h
|
* transmit.h
|
||||||
* Shared declarations for transmitting files between remote nodes.
|
* Shared declarations for transmitting files between remote nodes.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012-2015, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Header and type declarations for managing worker nodes and for placing
|
* Header and type declarations for managing worker nodes and for placing
|
||||||
* shards on worker nodes in an intelligent manner.
|
* shards on worker nodes in an intelligent manner.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Header for shared declarations that are used for caching remote resources
|
* Header for shared declarations that are used for caching remote resources
|
||||||
* on worker nodes, and also for applying distributed execution primitives.
|
* on worker nodes, and also for applying distributed execution primitives.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012, Citus Data, Inc.
|
* Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
*
|
*
|
||||||
* $Id$
|
* $Id$
|
||||||
*
|
*
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#
|
#
|
||||||
# pg_regress_multi.pl - Test runner for Citus
|
# pg_regress_multi.pl - Test runner for Citus
|
||||||
#
|
#
|
||||||
# Portions Copyright (c) 2012-2015, Citus Data, Inc.
|
# Portions Copyright (c) 2012-2016, Citus Data, Inc.
|
||||||
# Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
# Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
||||||
# Portions Copyright (c) 1994, Regents of the University of California
|
# Portions Copyright (c) 1994, Regents of the University of California
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue