Takuya UESHIN

Results 8 issues of Takuya UESHIN

PySpark 3.1 ported `pyspark-stubs` into its codebase which causes `mypy` check errors. We disabled it at #2083 but we should enable it back as soon as possible.

enhancement

Sphinx 3.1.0 which was published recently causes the following lint-python failure. The upper bound was set at #1569. We should fix the failures and remove the upper bound. ``` /home/runner/miniconda/envs/test-environment/lib/python3.8/site-packages/numpydoc/docscrape.py:377:...

bug

Adds JDK11 support to CI. The build should still be done with JDK 8 and test with JDK 8 or 11. - Add 11 to `java-version` metrix to use for...

### Description Ports the changes for python model v1 from [`dbt-spark`](https://github.com/dbt-labs/dbt-spark/pull/377) but use APIs below instead. - [Create an execution context](https://docs.databricks.com/dev-tools/api/1.2/index.html#create-an-execution-context ) - [Run a command](https://docs.databricks.com/dev-tools/api/1.2/index.html#run-a-command) - [Get information about...

### Description Applies connection retry refactor, add defaults with exponential backoff as per an item from #127. - Refactors retry logic to use `retry_connection` from core. - Adds consistent defaults...

resolves #139 ### Description Make `table` and `incremental` with `full-refresh` check the external location.

### Description Setups integration tests on GitHub Actions. The integration tests work when the PR is merged, and scheduled time (5am UTC).

### What changes were proposed in this pull request? Add named argument support to more TVFs. ```sql SELECT * FROM inline(input => array(struct(1, 'a'), struct(2, 'b'))); SELECT * FROM inline_outer(input...

SQL