-
Notifications
You must be signed in to change notification settings - Fork 29
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
com.yammer.breakerbox.jdbi.DependencyDB#findLatest is failing on Oracle DB #47
Comments
@chrisgray Any thoughts on it? |
I'd suggest us rewriting the findLatest SQL query to instead of trying to leverage |
@chrisgray Is my pull request O.K.? |
@maksymgendin I'm sorry but I'm no longer a Yammer employee so I'm unable to merge your PR. We'd have to get someone from Yammer to merge this in. |
@clarkbreyman-yammer @bmorton @chrismohr @daniel-robertson @eoh @geoffreymoller @ipoval @jamessheridan @jaylaney @joelklabo @kevn @SirAlvarex @smoak Hi guys! Could you please take a look at my pull request for this issue and merge it if it's O.K.? It's getting really urgent. Thanks in advance! <3 |
Hi!
com.yammer.breakerbox.jdbi.DependencyDB#findLatest
is failing on Oracle DB because oflimit 1
in the query...I wanted to discuss possible solutions to fix it 😄 With Hibernate it would be simple, but I have no idea if there is a nice solution with JDBI except callingcom.yammer.breakerbox.jdbi.DependencyDB#all
(the result list is ordered viaorder by timestamp desc
) and getting the first entry in the result list...Best regards
Maksym
The text was updated successfully, but these errors were encountered: