-
Notifications
You must be signed in to change notification settings - Fork 0
#43: Upgrade Slick version and add Slick-pg dependency #45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
benedeki
merged 7 commits into
master
from
feature/43-upgrade-slick-version-and-add-slick-pg-dependency
Jun 30, 2023
Merged
#43: Upgrade Slick version and add Slick-pg dependency #45
benedeki
merged 7 commits into
master
from
feature/43-upgrade-slick-version-and-add-slick-pg-dependency
Jun 30, 2023
Conversation
This file contains hidden or 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
* added Slick-pg
* Introduced slick-pg optional dependency to increase the number of supported types * created a Slick profile to use the Slick-pg types (most of them) * added implicits to use with UUID type * `SlickPgFunction` and `SlickPgFunctionWithStatusSupport` traits were renamed to `SlickFunction` and `SlickFunctionWithStatusSupport`as they are not really Postgres dependent * added new alternative constructor to `DBSchema` and `DBFunction` * extended `README.md` to contain info on Slick module
JaCoCo code coverage report - scala 2.11.12
|
JaCoCo code coverage report - scala 2.12.17
|
…test (#46) * test for `FaDbPostgresProfile` * test changed into integration test * added test for NULL/Option verification of types * fixed Option[UUID] parameter setting
Contributor
Author
|
This item depends on: |
Contributor
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- pulled
- built
- code review done
- run unit tests
- installed postgres
- integration tests
jakipatryk
previously approved these changes
Jun 30, 2023
Contributor
jakipatryk
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM (just checked the code).
slick/src/it/scala/za/co/absa/fadb/slick/FaDbPostgresProfileSuite.scala
Outdated
Show resolved
Hide resolved
Co-authored-by: jakipatryk <bajbartlomiej997@gmail.com>
jakipatryk
approved these changes
Jun 30, 2023
miroslavpojer
approved these changes
Jun 30, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
SlickPgFunctionandSlickPgFunctionWithStatusSupporttraits were renamed toSlickFunctionandSlickFunctionWithStatusSupportas they are not really Postgres dependentDBSchemaandDBFunctionREADME.mdto contain info on Slick moduleKept the Slick version as is, as it's the last one supporting Scala 2.11 and now is not the time to deal with version juggling. For same reason the Slick-pg is also not the latest version, but the one built for the used Slick
Depends on #46
Closes #43