-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/249 evaluate expected resultset datatype (#250)
* #249 implemented remaining questions: see ticket #249 Co-authored-by: Christoph Pirkl <[email protected]>
- Loading branch information
Showing
26 changed files
with
870 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
dependencies.md linguist-generated=true | ||
doc/changes/changelog.md linguist-generated=true | ||
pk_generated_parent.pom linguist-generated=true | ||
.github/workflows/broken_links_checker.yml linguist-generated=true | ||
.github/workflows/ci-build-next-java.yml linguist-generated=true | ||
.github/workflows/ci-build.yml linguist-generated=true | ||
.github/workflows/dependencies_check.yml linguist-generated=true | ||
.github/workflows/release_droid_prepare_original_checksum.yml linguist-generated=true | ||
.github/workflows/release_droid_print_quick_checksum.yml linguist-generated=true | ||
.github/workflows/release_droid_release_on_maven_central.yml linguist-generated=true | ||
.github/workflows/release_droid_upload_github_release_assets.yml linguist-generated=true |
6 changes: 4 additions & 2 deletions
6
.github/workflows/release_droid_upload_github_release_assets.yml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,6 @@ venv/ | |
*.orig | ||
*.old | ||
*.md.html | ||
*.flattened-pom.xml | ||
*.flattened-pom.xml | ||
/.apt_generated/ | ||
/.apt_generated_tests/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Common module of Exasol Virtual Schemas Adapters 16.0.0, released 2022-??-?? | ||
|
||
Code name: Evaluate expected resultset datatypes | ||
|
||
## Summary | ||
|
||
Starting with major version 8 Exasol database uses the capabilities reported by each virtual schema to provide select list data types for each push down request. Based on this information the JDBC virtual schemas no longer need to infer the data types of the result set by inspecting its values. Instead the JDBC virtual schemas can now use the information provided by the database. | ||
|
||
This create a list of benefits | ||
* Improved performance of queries to virtual schema by avoiding one query for each push down | ||
* Enhanced accuracy of data type mapping | ||
* Simplified data type mapping which is easier to extend | ||
* Support for additional use cases | ||
|
||
## Features | ||
|
||
* #249: Evaluate expected resultset datatypes | ||
|
||
## Dependency Updates | ||
|
||
### Plugin Dependency Updates | ||
|
||
* Updated `com.exasol:error-code-crawler-maven-plugin:1.1.1` to `1.1.2` | ||
* Updated `com.exasol:project-keeper-maven-plugin:2.5.0` to `2.7.0` | ||
* Updated `org.apache.maven.plugins:maven-enforcer-plugin:3.0.0` to `3.1.0` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ error-tags: | |
VSCOMJAVA: | ||
packages: | ||
- com.exasol | ||
highest-index: 35 | ||
highest-index: 40 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.