-
Notifications
You must be signed in to change notification settings - Fork 116
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
Show method for render statements #988
base: master
Are you sure you want to change the base?
Conversation
4fbc498
to
79429be
Compare
@jczuchnowski review plz when you will have free time. |
- add tests on `show` for all sql dialects - add `show` info in README
6a54403
to
b3c8ae8
Compare
- add tests on `show` for all sql dialects - add `show` info in README
b3c8ae8
to
80f7afd
Compare
@@ -54,6 +54,22 @@ trait Sql { | |||
|
|||
def renderInsert[A: Schema](insert: Insert[_, A]): SqlStatement | |||
|
|||
implicit class readOps(read: Read[_]) { |
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.
seems that this implicit class should extend AnyVal
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.
agree, thx, will fix it
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.
Unfortunately, can't do it due to show method dependency on realization of trait, which is prohibited for value class
show
method for statementsshow
for all sql dialectsshow
info in README