Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 85 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -281,9 +281,26 @@ The PostgreSQL software includes:
----------------------------
PostgreSQL-style License

src/port/gettimeofday.c
src/port/gettimeofday.c
see licenses/LICENSE-gettimeofday.txt

----------------------------
Boost Software License - Version 1.0

Ryu float-to-string conversion (https://github.com/ulfjack/ryu),
copyright 2018 Ulf Adams. Upstream Ryu is dual-licensed under the
Apache License 2.0 or the Boost Software License 1.0; PostgreSQL
took it under the terms of the Boost license, and so does this
distribution.

src/common/d2s.c
src/common/d2s_full_table.h
src/common/d2s_intrinsics.h
src/common/f2s.c
src/common/ryu_common.h
src/include/common/shortest_dec.h
see licenses/LICENSE-boost.txt

================================================================================
This product contains significant parts that were originally based on software
from VMware, Inc. or its affiliates.
Expand Down Expand Up @@ -353,17 +370,81 @@ Apache Cloudberry includes codes from
----------------------------
MIT LICENSE

dependencies/yyjson
dependency/yyjson
see licenses/LICENSE-yyjson.txt

contrib/pax_storage/src/cpp/cpp-stub
see licenses/LICENSE-cpp-stub.txt

contrib/pax_storage/src/cpp/contrib/tabulate
(tabulate's own code only; the third-party code bundled and embedded
within it is listed below under its own licenses)
see licenses/LICENSE-tabulate.txt

----------------------------
BSD 3 Clause License
Note that tabulate's amalgamated single header,
contrib/pax_storage/src/cpp/contrib/tabulate/single_include/tabulate/tabulate.hpp,
is a composite file: the portions carrying tabulate's own
"SPDX-License-Identifier: MIT" notices are under this MIT license,
while the third-party portions embedded in the same file are under
the licenses identified below.

----------------------------
Boost Software License - Version 1.0

The bundled tabulate library includes the following third-party
header-only libraries by Martin Moene, which are distributed under
the Boost Software License, Version 1.0, rather than under
tabulate's own MIT license:

optional-lite (https://github.com/martinmoene/optional-lite)
contrib/pax_storage/src/cpp/contrib/tabulate/include/tabulate/optional_lite.hpp

variant-lite (https://github.com/martinmoene/variant-lite)
contrib/pax_storage/src/cpp/contrib/tabulate/include/tabulate/variant_lite.hpp

string-view-lite (https://github.com/martinmoene/string-view-lite)
contrib/pax_storage/src/cpp/contrib/tabulate/include/tabulate/string_view_lite.hpp

Verbatim copies of all three are also embedded in tabulate's
amalgamated single header. This license covers those embedded
portions -- the ones bearing the Martin Moene copyright notices and
the accompanying "Distributed under the Boost Software License,
Version 1.0" grants -- and not the file as a whole:
contrib/pax_storage/src/cpp/contrib/tabulate/single_include/tabulate/tabulate.hpp

see licenses/LICENSE-boost.txt
(also shipped in-tree as
contrib/pax_storage/src/cpp/contrib/tabulate/LICENSE.optional-lite and
contrib/pax_storage/src/cpp/contrib/tabulate/LICENSE.variant-lite)

----------------------------
BSD 3 Clause License

contrib/pax_storage/src/cpp/contrib/googletest
see licenses/LICENSE-googletest.txt

termcolor (https://github.com/ikalnytskyi/termcolor), bundled by
tabulate rather than under tabulate's own MIT license:

contrib/pax_storage/src/cpp/contrib/tabulate/include/tabulate/termcolor.hpp

A verbatim copy of termcolor is also embedded in tabulate's
amalgamated single header. This license covers that embedded
portion -- the one bearing the "copyright: (c) 2013 by Ihor
Kalnytskyi" notice, comprising the termcolor namespace -- and not
the file as a whole:
contrib/pax_storage/src/cpp/contrib/tabulate/single_include/tabulate/tabulate.hpp

see licenses/LICENSE-termcolor.txt
(also shipped in-tree as
contrib/pax_storage/src/cpp/contrib/tabulate/LICENSE.termcolor)

amalgamate.py (https://github.com/edlund/amalgamate), copyright
2012 Erik Edlund, the source amalgamation tool bundled by tabulate
and used to generate its single header:

contrib/pax_storage/src/cpp/contrib/tabulate/utils/amalgamate

see licenses/LICENSE-amalgamate.txt
(also shipped in-tree as
contrib/pax_storage/src/cpp/contrib/tabulate/utils/amalgamate/LICENSE.md)
27 changes: 27 additions & 0 deletions licenses/LICENSE-amalgamate.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
amalgamate.py - Amalgamate C source and header files
Copyright (c) 2012, Erik Edlund <erik.edlund@32767.se>

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

* Neither the name of Erik Edlund, nor the names of its contributors may
be used to endorse or promote products derived from this software without
specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 changes: 23 additions & 0 deletions licenses/LICENSE-boost.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Boost Software License - Version 1.0 - August 17th, 2003

Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:

The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
31 changes: 31 additions & 0 deletions licenses/LICENSE-termcolor.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
Copyright (c) 2013, Ihor Kalnytskyi.
All rights reserved.

Redistribution and use in source and binary forms of the software as well
as documentation, with or without modification, are permitted provided
that the following conditions are met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.

* The names of the contributors may not be used to endorse or
promote products derived from this software without specific
prior written permission.

THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1941,6 +1941,15 @@ code or new licensing patterns.
<exclude>contrib/pax_storage/src/cpp/cpp-stub/src/addr_pri.h</exclude>
<exclude>contrib/pax_storage/src/cpp/cpp-stub/src/stub.h</exclude>

<!--
Verbatim third-party license texts referenced from the root
LICENSE file. These are license grants, not source files, so
they carry no license header of their own.
-->
<exclude>licenses/LICENSE-amalgamate.txt</exclude>
<exclude>licenses/LICENSE-boost.txt</exclude>
<exclude>licenses/LICENSE-termcolor.txt</exclude>

<exclude>contrib/pax_storage/src/cpp/contrib/tabulate/tabulateConfig.cmake.in</exclude>
<exclude>contrib/pax_storage/src/cpp/contrib/tabulate/tabulate.pri</exclude>
<exclude>contrib/pax_storage/src/cpp/contrib/tabulate/clang-format.bash</exclude>
Expand Down
Loading