databricks-sqlalchemy 0.0.1b1__tar.gz → 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- databricks_sqlalchemy-1.0.0/CHANGELOG.md +274 -0
- databricks_sqlalchemy-1.0.0/LICENSE +201 -0
- databricks_sqlalchemy-1.0.0/PKG-INFO +225 -0
- databricks_sqlalchemy-1.0.0/README.md +203 -0
- databricks_sqlalchemy-1.0.0/pyproject.toml +43 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/__init__.py +4 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/_ddl.py +100 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/_parse.py +385 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/_types.py +323 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/base.py +436 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/dependency_test/test_dependency.py +22 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/py.typed +0 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/pytest.ini +4 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/requirements.py +249 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/setup.cfg +4 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test/_extra.py +70 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test/_future.py +331 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test/_regression.py +311 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test/_unsupported.py +450 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test/conftest.py +13 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test/overrides/_componentreflectiontest.py +189 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test/overrides/_ctetest.py +33 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test/test_suite.py +13 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test_local/__init__.py +5 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test_local/conftest.py +44 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test_local/e2e/MOCK_DATA.xlsx +0 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test_local/e2e/test_basic.py +543 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test_local/test_ddl.py +96 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test_local/test_parsing.py +160 -0
- databricks_sqlalchemy-1.0.0/src/databricks/sqlalchemy/test_local/test_types.py +161 -0
- databricks_sqlalchemy-0.0.1b1/PKG-INFO +0 -19
- databricks_sqlalchemy-0.0.1b1/README.md +0 -3
- databricks_sqlalchemy-0.0.1b1/databricks/__init__.py +0 -7
- databricks_sqlalchemy-0.0.1b1/databricks/sqlalchemy/__init__.py +0 -2
- databricks_sqlalchemy-0.0.1b1/pyproject.toml +0 -16
@@ -0,0 +1,274 @@
|
|
1
|
+
# Release History
|
2
|
+
|
3
|
+
# 3.3.0 (2024-07-18)
|
4
|
+
|
5
|
+
- Don't retry requests that fail with HTTP code 401 (databricks/databricks-sql-python#408 by @Hodnebo)
|
6
|
+
- Remove username/password (aka "basic") auth option (databricks/databricks-sql-python#409 by @jackyhu-db)
|
7
|
+
- Refactor CloudFetch handler to fix numerous issues with it (databricks/databricks-sql-python#405 by @kravets-levko)
|
8
|
+
- Add option to disable SSL verification for CloudFetch links (databricks/databricks-sql-python#414 by @kravets-levko)
|
9
|
+
|
10
|
+
Databricks-managed passwords reached end of life on July 10, 2024. Therefore, Basic auth support was removed from
|
11
|
+
the library. See https://docs.databricks.com/en/security/auth-authz/password-deprecation.html
|
12
|
+
|
13
|
+
The existing option `_tls_no_verify=True` of `sql.connect(...)` will now also disable SSL cert verification
|
14
|
+
(but not the SSL itself) for CloudFetch links. This option should be used as a workaround only, when other ways
|
15
|
+
to fix SSL certificate errors didn't work.
|
16
|
+
|
17
|
+
# 3.2.0 (2024-06-06)
|
18
|
+
|
19
|
+
- Update proxy authentication (databricks/databricks-sql-python#354 by @amir-haroun)
|
20
|
+
- Relax `pyarrow` pin (databricks/databricks-sql-python#389 by @dhirschfeld)
|
21
|
+
- Fix error logging in OAuth manager (databricks/databricks-sql-python#269 by @susodapop)
|
22
|
+
- SQLAlchemy: enable delta.feature.allowColumnDefaults for all tables (databricks/databricks-sql-python#343 by @dhirschfeld)
|
23
|
+
- Update `thrift` dependency (databricks/databricks-sql-python#397 by @m1n0)
|
24
|
+
|
25
|
+
# 3.1.2 (2024-04-18)
|
26
|
+
|
27
|
+
- Remove broken cookie code (#379)
|
28
|
+
- Small typing fixes (#382, #384 thanks @wyattscarpenter)
|
29
|
+
|
30
|
+
# 3.1.1 (2024-03-19)
|
31
|
+
|
32
|
+
- Don't retry requests that fail with code 403 (#373)
|
33
|
+
- Assume a default retry-after for 429/503 (#371)
|
34
|
+
- Fix boolean literals (#357)
|
35
|
+
|
36
|
+
# 3.1.0 (2024-02-16)
|
37
|
+
|
38
|
+
- Revert retry-after behavior to be exponential backoff (#349)
|
39
|
+
- Support Databricks OAuth on Azure (#351)
|
40
|
+
- Support Databricks OAuth on GCP (#338)
|
41
|
+
|
42
|
+
# 3.0.3 (2024-02-02)
|
43
|
+
|
44
|
+
- Revised docstrings and examples for OAuth (#339)
|
45
|
+
- Redact the URL query parameters from the urllib3.connectionpool logs (#341)
|
46
|
+
|
47
|
+
# 3.0.2 (2024-01-25)
|
48
|
+
|
49
|
+
- SQLAlchemy dialect now supports table and column comments (thanks @cbornet!)
|
50
|
+
- Fix: SQLAlchemy dialect now correctly reflects TINYINT types (thanks @TimTheinAtTabs!)
|
51
|
+
- Fix: `server_hostname` URIs that included `https://` would raise an exception
|
52
|
+
- Other: pinned to `pandas<=2.1` and `urllib3>=1.26` to avoid runtime errors in dbt-databricks (#330)
|
53
|
+
|
54
|
+
## 3.0.1 (2023-12-01)
|
55
|
+
|
56
|
+
- Other: updated docstring comment about default parameterization approach (#287)
|
57
|
+
- Other: added tests for reading complex types and revised docstrings and type hints (#293)
|
58
|
+
- Fix: SQLAlchemy dialect raised DeprecationWarning due to `dbapi` classmethod (#294)
|
59
|
+
- Fix: SQLAlchemy dialect could not reflect TIMESTAMP_NTZ columns (#296)
|
60
|
+
|
61
|
+
## 3.0.0 (2023-11-17)
|
62
|
+
|
63
|
+
- Remove support for Python 3.7
|
64
|
+
- Add support for native parameterized SQL queries. Requires DBR 14.2 and above. See docs/parameters.md for more info.
|
65
|
+
- Completely rewritten SQLAlchemy dialect
|
66
|
+
- Adds support for SQLAlchemy >= 2.0 and drops support for SQLAlchemy 1.x
|
67
|
+
- Full e2e test coverage of all supported features
|
68
|
+
- Detailed usage notes in `README.sqlalchemy.md`
|
69
|
+
- Adds support for:
|
70
|
+
- New types: `TIME`, `TIMESTAMP`, `TIMESTAMP_NTZ`, `TINYINT`
|
71
|
+
- `Numeric` type scale and precision, like `Numeric(10,2)`
|
72
|
+
- Reading and writing `PrimaryKeyConstraint` and `ForeignKeyConstraint`
|
73
|
+
- Reading and writing composite keys
|
74
|
+
- Reading and writing from views
|
75
|
+
- Writing `Identity` to tables (i.e. autoincrementing primary keys)
|
76
|
+
- `LIMIT` and `OFFSET` for paging through results
|
77
|
+
- Caching metadata calls
|
78
|
+
- Enable cloud fetch by default. To disable, set `use_cloud_fetch=False` when building `databricks.sql.client`.
|
79
|
+
- Add integration tests for Databricks UC Volumes ingestion queries
|
80
|
+
- Retries:
|
81
|
+
- Add `_retry_max_redirects` config
|
82
|
+
- Set `_enable_v3_retries=True` and warn if users override it
|
83
|
+
- Security: bump minimum pyarrow version to 14.0.1 (CVE-2023-47248)
|
84
|
+
|
85
|
+
## 2.9.3 (2023-08-24)
|
86
|
+
|
87
|
+
- Fix: Connections failed when urllib3~=1.0.0 is installed (#206)
|
88
|
+
|
89
|
+
## 2.9.2 (2023-08-17)
|
90
|
+
|
91
|
+
**Note: this release was yanked from Pypi on 13 September 2023 due to compatibility issues with environments where `urllib3<=2.0.0` were installed. The log changes are incorporated into version 2.9.3 and greater.**
|
92
|
+
|
93
|
+
- Other: Add `examples/v3_retries_query_execute.py` (#199)
|
94
|
+
- Other: suppress log message when `_enable_v3_retries` is not `True` (#199)
|
95
|
+
- Other: make this connector backwards compatible with `urllib3>=1.0.0` (#197)
|
96
|
+
|
97
|
+
## 2.9.1 (2023-08-11)
|
98
|
+
|
99
|
+
**Note: this release was yanked from Pypi on 13 September 2023 due to compatibility issues with environments where `urllib3<=2.0.0` were installed.**
|
100
|
+
|
101
|
+
- Other: Explicitly pin urllib3 to ^2.0.0 (#191)
|
102
|
+
|
103
|
+
## 2.9.0 (2023-08-10)
|
104
|
+
|
105
|
+
- Replace retry handling with DatabricksRetryPolicy. This is disabled by default. To enable, set `_enable_v3_retries=True` when creating `databricks.sql.client` (#182)
|
106
|
+
- Other: Fix typo in README quick start example (#186)
|
107
|
+
- Other: Add autospec to Client mocks and tidy up `make_request` (#188)
|
108
|
+
|
109
|
+
## 2.8.0 (2023-07-21)
|
110
|
+
|
111
|
+
- Add support for Cloud Fetch. Disabled by default. Set `use_cloud_fetch=True` when building `databricks.sql.client` to enable it (#146, #151, #154)
|
112
|
+
- SQLAlchemy has_table function now honours schema= argument and adds catalog= argument (#174)
|
113
|
+
- SQLAlchemy set non_native_boolean_check_constraint False as it's not supported by Databricks (#120)
|
114
|
+
- Fix: Revised SQLAlchemy dialect and examples for compatibility with SQLAlchemy==1.3.x (#173)
|
115
|
+
- Fix: oauth would fail if expired credentials appeared in ~/.netrc (#122)
|
116
|
+
- Fix: Python HTTP proxies were broken after switch to urllib3 (#158)
|
117
|
+
- Other: remove unused import in SQLAlchemy dialect
|
118
|
+
- Other: Relax pandas dependency constraint to allow ^2.0.0 (#164)
|
119
|
+
- Other: Connector now logs operation handle guids as hexadecimal instead of bytes (#170)
|
120
|
+
- Other: test_socket_timeout_user_defined e2e test was broken (#144)
|
121
|
+
|
122
|
+
## 2.7.0 (2023-06-26)
|
123
|
+
|
124
|
+
- Fix: connector raised exception when calling close() on a closed Thrift session
|
125
|
+
- Improve e2e test development ergonomics
|
126
|
+
- Redact logged thrift responses by default
|
127
|
+
- Add support for OAuth on Databricks Azure
|
128
|
+
|
129
|
+
## 2.6.2 (2023-06-14)
|
130
|
+
|
131
|
+
- Fix: Retry GetOperationStatus requests for http errors
|
132
|
+
|
133
|
+
## 2.6.1 (2023-06-08)
|
134
|
+
|
135
|
+
- Fix: http.client would raise a BadStatusLine exception in some cases
|
136
|
+
|
137
|
+
## 2.6.0 (2023-06-07)
|
138
|
+
|
139
|
+
- Add support for HTTP 1.1 connections (connection pools)
|
140
|
+
- Add a default socket timeout for thrift RPCs
|
141
|
+
|
142
|
+
## 2.5.2 (2023-05-08)
|
143
|
+
|
144
|
+
- Fix: SQLAlchemy adapter could not reflect TIMESTAMP or DATETIME columns
|
145
|
+
- Other: Relax pandas and alembic dependency specifications
|
146
|
+
|
147
|
+
## 2.5.1 (2023-04-28)
|
148
|
+
|
149
|
+
- Other: Relax sqlalchemy required version as it was unecessarily strict.
|
150
|
+
|
151
|
+
## 2.5.0 (2023-04-14)
|
152
|
+
|
153
|
+
- Add support for External Auth providers
|
154
|
+
- Fix: Python HTTP proxies were broken
|
155
|
+
- Other: All Thrift requests that timeout during connection will be automatically retried
|
156
|
+
|
157
|
+
## 2.4.1 (2023-03-21)
|
158
|
+
|
159
|
+
- Less strict numpy and pyarrow dependencies
|
160
|
+
- Update examples in README to use security best practices
|
161
|
+
- Update docstring for client.execute() for clarity
|
162
|
+
|
163
|
+
## 2.4.0 (2023-02-21)
|
164
|
+
|
165
|
+
- Improve compatibility when installed alongside other Databricks namespace Python packages
|
166
|
+
- Add SQLAlchemy dialect
|
167
|
+
|
168
|
+
## 2.3.0 (2023-01-10)
|
169
|
+
|
170
|
+
- Support staging ingestion commands for DBR 12+
|
171
|
+
|
172
|
+
## 2.2.2 (2023-01-03)
|
173
|
+
|
174
|
+
- Support custom oauth client id and redirect port
|
175
|
+
- Fix: Add none check on \_oauth_persistence in DatabricksOAuthProvider
|
176
|
+
|
177
|
+
## 2.2.1 (2022-11-29)
|
178
|
+
|
179
|
+
- Add support for Python 3.11
|
180
|
+
|
181
|
+
## 2.2.0 (2022-11-15)
|
182
|
+
|
183
|
+
- Bump thrift version to address https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-13949
|
184
|
+
- Add support for lz4 compression
|
185
|
+
|
186
|
+
## 2.1.0 (2022-09-30)
|
187
|
+
|
188
|
+
- Introduce experimental OAuth support while Bring Your Own IDP is in Public Preview on AWS
|
189
|
+
- Add functional examples
|
190
|
+
|
191
|
+
## 2.0.5 (2022-08-23)
|
192
|
+
|
193
|
+
- Fix: closing a connection now closes any open cursors from that connection at the server
|
194
|
+
- Other: Add project links to pyproject.toml (helpful for visitors from PyPi)
|
195
|
+
|
196
|
+
## 2.0.4 (2022-08-17)
|
197
|
+
|
198
|
+
- Add support for Python 3.10
|
199
|
+
- Add unit test matrix for supported Python versions
|
200
|
+
|
201
|
+
Huge thanks to @dbaxa for contributing this change!
|
202
|
+
|
203
|
+
## 2.0.3 (2022-08-05)
|
204
|
+
|
205
|
+
- Add retry logic for `GetOperationStatus` requests that fail with an `OSError`
|
206
|
+
- Reorganised code to use Poetry for dependency management.
|
207
|
+
|
208
|
+
## 2.0.2 (2022-05-04)
|
209
|
+
|
210
|
+
- Better exception handling in automatic connection close
|
211
|
+
|
212
|
+
## 2.0.1 (2022-04-21)
|
213
|
+
|
214
|
+
- Fixed Pandas dependency in setup.cfg to be >= 1.2.0
|
215
|
+
|
216
|
+
## 2.0.0 (2022-04-19)
|
217
|
+
|
218
|
+
- Initial stable release of V2
|
219
|
+
- Added better support for complex types, so that in Databricks runtime 10.3+, Arrays, Maps and Structs will get
|
220
|
+
deserialized as lists, lists of tuples and dicts, respectively.
|
221
|
+
- Changed the name of the metadata arg to http_headers
|
222
|
+
|
223
|
+
## 2.0.b2 (2022-04-04)
|
224
|
+
|
225
|
+
- Change import of collections.Iterable to collections.abc.Iterable to make the library compatible with Python 3.10
|
226
|
+
- Fixed bug with .tables method so that .tables works as expected with Unity-Catalog enabled endpoints
|
227
|
+
|
228
|
+
## 2.0.0b1 (2022-03-04)
|
229
|
+
|
230
|
+
- Fix packaging issue (dependencies were not being installed properly)
|
231
|
+
- Fetching timestamp results will now return aware instead of naive timestamps
|
232
|
+
- The client will now default to using simplified error messages
|
233
|
+
|
234
|
+
## 2.0.0b (2022-02-08)
|
235
|
+
|
236
|
+
- Initial beta release of V2. V2 is an internal re-write of large parts of the connector to use Databricks edge features. All public APIs from V1 remain.
|
237
|
+
- Added Unity Catalog support (pass catalog and / or schema key word args to the .connect method to select initial schema and catalog)
|
238
|
+
|
239
|
+
---
|
240
|
+
|
241
|
+
**Note**: The code for versions prior to `v2.0.0b` is not contained in this repository. The below entries are included for reference only.
|
242
|
+
|
243
|
+
---
|
244
|
+
|
245
|
+
## 1.0.0 (2022-01-20)
|
246
|
+
|
247
|
+
- Add operations for retrieving metadata
|
248
|
+
- Add the ability to access columns by name on result rows
|
249
|
+
- Add the ability to provide configuration settings on connect
|
250
|
+
|
251
|
+
## 0.9.4 (2022-01-10)
|
252
|
+
|
253
|
+
- Improved logging and error messages.
|
254
|
+
|
255
|
+
## 0.9.3 (2021-12-08)
|
256
|
+
|
257
|
+
- Add retries for 429 and 503 HTTP responses.
|
258
|
+
|
259
|
+
## 0.9.2 (2021-12-02)
|
260
|
+
|
261
|
+
- (Bug fix) Increased Thrift requirement from 0.10.0 to 0.13.0 as 0.10.0 was in fact incompatible
|
262
|
+
- (Bug fix) Fixed error message after query execution failed -SQLSTATE and Error message were misplaced
|
263
|
+
|
264
|
+
## 0.9.1 (2021-09-01)
|
265
|
+
|
266
|
+
- Public Preview release, Experimental tag removed
|
267
|
+
- minor updates in internal build/packaging
|
268
|
+
- no functional changes
|
269
|
+
|
270
|
+
## 0.9.0 (2021-08-04)
|
271
|
+
|
272
|
+
- initial (Experimental) release of pyhive-forked connector
|
273
|
+
- Python DBAPI 2.0 (PEP-0249), thrift based
|
274
|
+
- see docs for more info: https://docs.databricks.com/dev-tools/python-sql-connector.html
|
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright 2022 Databricks, Inc.
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|