-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathNOTICE
More file actions
127 lines (97 loc) · 5.51 KB
/
Copy pathNOTICE
File metadata and controls
127 lines (97 loc) · 5.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
PyAthena
https://github.com/pyathena-dev/PyAthena
PyAthena is licensed under the MIT License. See LICENSE.
Acknowledgements
================
PyAthena's early development was informed by PyHive, including its DB-API
tests and implementation patterns. PyAthena has since evolved with substantial
Athena-specific functionality and additional backends.
PyHive: https://github.com/dropbox/PyHive
The initial PyAthena commit (35a221629783ac8e7997cddce0599ec84e39963d) linked
to PyHive sources from its formatter, SQLAlchemy dialect, and tests. Those
parts were compared with the contemporaneous PyHive revision
ae3c9a9645ebd3dc962060d498df73e96498d615.
Parts that remain recognizable in PyAthena:
- pyathena/formatter.py: the string escape rules of `_escape_trino` (and its
`_escape_presto` alias) follow PyHive's `ParamEscaper.escape_string`
(pyhive/common.py), and `_escape_hive` follows PyHive's `HiveParamEscaper`
(pyhive/hive.py).
- pyathena/sqlalchemy/compiler.py: `visit_char_length_func`, which renders
`char_length` as `length`, follows PyHive's `PrestoCompiler`
(pyhive/sqlalchemy_presto.py).
- tests/pyathena/test_cursor.py: test cases including the escaping input of
`test_escape`, the Unicode input of `test_unicode`, and the NULL patterns of
`test_null` follow PyHive's pyhive/tests/dbapi_test_case.py.
- tests/pyathena/sqlalchemy/test_base.py: test cases including
`test_unicode`, `test_char_length`, and `test_reflect_no_such_table` follow
PyHive's pyhive/tests/sqlalchemy_test_case.py.
tests/pyathena/aio/sqlalchemy/test_base.py ports `test_unicode` to the
asynchronous dialect.
Parts that have since been replaced:
- The `UniversalSet` helper and its use as the SQLAlchemy identifier
preparer's reserved words, removed in
d29c9ef97efb2168998eccdfa67d7706d381d655.
DB-API names, the exception hierarchy, and type objects shared with PyHive
follow PEP 249 (https://peps.python.org/pep-0249/).
PyHive is distributed under the following notice:
Copyright (c) 2014 Dropbox, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Other third-party material
==========================
cloudformation/github_actions_oidc.yaml is adapted from the sample template
in the aws-actions/configure-aws-credentials README
(https://github.com/aws-actions/configure-aws-credentials/blob/2f8dfd0ed43d880f85b57f0c8727b497af2037de/README.md).
Its parameters, OIDC provider condition, role trust policy, and OIDC provider
resource remain. aws-actions/configure-aws-credentials is distributed under
the following notice:
MIT License
Copyright 2019 Amazon.com, Inc. or its affiliates.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
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 AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
pyathena/util.py: `strtobool` was ported in
31bea9fc73f4cf9246330bdf21a1511c7616683d from `distutils.util.strtobool`,
which was removed from the Python standard library by PEP 632
(https://peps.python.org/pep-0632/). It originates in CPython's distutils,
distributed under the Python Software Foundation License
(https://docs.python.org/3/license.html), and is maintained in pypa/distutils
(https://github.com/pypa/distutils), distributed under the MIT License.
Files without a license header
==============================
Files that carry the header "Copyright <year> The PyAthena authors" with
"SPDX-License-Identifier: MIT" contain only original work by the PyAthena
authors. The year is the file's first publication year, or for files that
existed before the header was introduced, the year of their earliest
surviving content.
Other files do not carry that header. They are distributed under the MIT
License in LICENSE, together with any notice above that applies to them.
They include:
- files containing contributions from other contributors, whose authorship
is recorded in the Git history;
- files containing the third-party material described above;
- files of generated origin, such as docs/conf.py, which started as
sphinx-quickstart output, and lock files;
- empty files, symbolic links, binary and data files, and the pull request
template.
The classification of each file is recorded in
https://github.com/pyathena-dev/PyAthena/issues/790.